Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: Source/core/svg/SVGPatternElement.cpp

Issue 1025213002: Begin tracking why layout is invalidated (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGMaskElement.cpp ('k') | Source/core/svg/SVGSVGElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org> 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 } 108 }
109 109
110 void SVGPatternElement::childrenChanged(const ChildrenChange& change) 110 void SVGPatternElement::childrenChanged(const ChildrenChange& change)
111 { 111 {
112 SVGElement::childrenChanged(change); 112 SVGElement::childrenChanged(change);
113 113
114 if (change.byParser) 114 if (change.byParser)
115 return; 115 return;
116 116
117 if (LayoutObject* object = layoutObject()) 117 if (LayoutObject* object = layoutObject())
118 object->setNeedsLayoutAndFullPaintInvalidation(); 118 object->setNeedsLayoutAndFullPaintInvalidation(LayoutInvalidationReason: :ChildChanged);
119 } 119 }
120 120
121 LayoutObject* SVGPatternElement::createLayoutObject(const ComputedStyle&) 121 LayoutObject* SVGPatternElement::createLayoutObject(const ComputedStyle&)
122 { 122 {
123 return new LayoutSVGResourcePattern(this); 123 return new LayoutSVGResourcePattern(this);
124 } 124 }
125 125
126 static void setPatternAttributes(const SVGPatternElement* element, PatternAttrib utes& attributes) 126 static void setPatternAttributes(const SVGPatternElement* element, PatternAttrib utes& attributes)
127 { 127 {
128 if (!attributes.hasX() && element->x()->isSpecified()) 128 if (!attributes.hasX() && element->x()->isSpecified())
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 bool SVGPatternElement::selfHasRelativeLengths() const 193 bool SVGPatternElement::selfHasRelativeLengths() const
194 { 194 {
195 return m_x->currentValue()->isRelative() 195 return m_x->currentValue()->isRelative()
196 || m_y->currentValue()->isRelative() 196 || m_y->currentValue()->isRelative()
197 || m_width->currentValue()->isRelative() 197 || m_width->currentValue()->isRelative()
198 || m_height->currentValue()->isRelative(); 198 || m_height->currentValue()->isRelative();
199 } 199 }
200 200
201 } // namespace blink 201 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/svg/SVGMaskElement.cpp ('k') | Source/core/svg/SVGSVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698