| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 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 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 if (attrName == SVGNames::rAttr | 81 if (attrName == SVGNames::rAttr |
| 82 || attrName == SVGNames::cxAttr | 82 || attrName == SVGNames::cxAttr |
| 83 || attrName == SVGNames::cyAttr) { | 83 || attrName == SVGNames::cyAttr) { |
| 84 SVGElement::InvalidationGuard invalidationGuard(this); | 84 SVGElement::InvalidationGuard invalidationGuard(this); |
| 85 | 85 |
| 86 invalidateSVGPresentationAttributeStyle(); | 86 invalidateSVGPresentationAttributeStyle(); |
| 87 setNeedsStyleRecalc(LocalStyleChange, | 87 setNeedsStyleRecalc(LocalStyleChange, |
| 88 StyleChangeReasonForTracing::fromAttribute(attrName)); | 88 StyleChangeReasonForTracing::fromAttribute(attrName)); |
| 89 updateRelativeLengthsInformation(); | 89 updateRelativeLengthsInformation(); |
| 90 | 90 |
| 91 LayoutSVGShape* renderer = toLayoutSVGShape(this->layoutObject()); | 91 LayoutSVGShape* layoutObject = toLayoutSVGShape(this->layoutObject()); |
| 92 if (!renderer) | 92 if (!layoutObject) |
| 93 return; | 93 return; |
| 94 | 94 |
| 95 renderer->setNeedsShapeUpdate(); | 95 layoutObject->setNeedsShapeUpdate(); |
| 96 markForLayoutAndParentResourceInvalidation(renderer); | 96 markForLayoutAndParentResourceInvalidation(layoutObject); |
| 97 return; | 97 return; |
| 98 } | 98 } |
| 99 | 99 |
| 100 SVGGraphicsElement::svgAttributeChanged(attrName); | 100 SVGGraphicsElement::svgAttributeChanged(attrName); |
| 101 } | 101 } |
| 102 | 102 |
| 103 bool SVGCircleElement::selfHasRelativeLengths() const | 103 bool SVGCircleElement::selfHasRelativeLengths() const |
| 104 { | 104 { |
| 105 return m_cx->currentValue()->isRelative() | 105 return m_cx->currentValue()->isRelative() |
| 106 || m_cy->currentValue()->isRelative() | 106 || m_cy->currentValue()->isRelative() |
| 107 || m_r->currentValue()->isRelative(); | 107 || m_r->currentValue()->isRelative(); |
| 108 } | 108 } |
| 109 | 109 |
| 110 LayoutObject* SVGCircleElement::createLayoutObject(const ComputedStyle&) | 110 LayoutObject* SVGCircleElement::createLayoutObject(const ComputedStyle&) |
| 111 { | 111 { |
| 112 return new LayoutSVGEllipse(this); | 112 return new LayoutSVGEllipse(this); |
| 113 } | 113 } |
| 114 | 114 |
| 115 } | 115 } |
| OLD | NEW |