OLD | NEW |
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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(); |
119 } | 119 } |
120 | 120 |
121 LayoutObject* SVGPatternElement::createLayoutObject(const LayoutStyle&) | 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()) |
129 attributes.setX(element->x()->currentValue()); | 129 attributes.setX(element->x()->currentValue()); |
130 | 130 |
131 if (!attributes.hasY() && element->y()->isSpecified()) | 131 if (!attributes.hasY() && element->y()->isSpecified()) |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |