| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 || attrName == SVGNames::yAttr | 60 || attrName == SVGNames::yAttr |
| 61 || attrName == SVGNames::dxAttr | 61 || attrName == SVGNames::dxAttr |
| 62 || attrName == SVGNames::dyAttr; | 62 || attrName == SVGNames::dyAttr; |
| 63 | 63 |
| 64 if (updateRelativeLengths) | 64 if (updateRelativeLengths) |
| 65 updateRelativeLengthsInformation(); | 65 updateRelativeLengthsInformation(); |
| 66 | 66 |
| 67 if (updateRelativeLengths || attrName == SVGNames::rotateAttr) { | 67 if (updateRelativeLengths || attrName == SVGNames::rotateAttr) { |
| 68 SVGElement::InvalidationGuard invalidationGuard(this); | 68 SVGElement::InvalidationGuard invalidationGuard(this); |
| 69 | 69 |
| 70 LayoutObject* renderer = this->layoutObject(); | 70 LayoutObject* layoutObject = this->layoutObject(); |
| 71 if (!renderer) | 71 if (!layoutObject) |
| 72 return; | 72 return; |
| 73 | 73 |
| 74 if (LayoutSVGText* textRenderer = LayoutSVGText::locateLayoutSVGTextAnce
stor(renderer)) | 74 if (LayoutSVGText* textLayoutObject = LayoutSVGText::locateLayoutSVGText
Ancestor(layoutObject)) |
| 75 textRenderer->setNeedsPositioningValuesUpdate(); | 75 textLayoutObject->setNeedsPositioningValuesUpdate(); |
| 76 markForLayoutAndParentResourceInvalidation(renderer); | 76 markForLayoutAndParentResourceInvalidation(layoutObject); |
| 77 return; | 77 return; |
| 78 } | 78 } |
| 79 | 79 |
| 80 SVGTextContentElement::svgAttributeChanged(attrName); | 80 SVGTextContentElement::svgAttributeChanged(attrName); |
| 81 } | 81 } |
| 82 | 82 |
| 83 SVGTextPositioningElement* SVGTextPositioningElement::elementFromRenderer(Layout
Object& renderer) | 83 SVGTextPositioningElement* SVGTextPositioningElement::elementFromRenderer(Layout
Object& layoutObject) |
| 84 { | 84 { |
| 85 if (!renderer.isSVGText() && !renderer.isSVGInline()) | 85 if (!layoutObject.isSVGText() && !layoutObject.isSVGInline()) |
| 86 return 0; | 86 return 0; |
| 87 | 87 |
| 88 Node* node = renderer.node(); | 88 Node* node = layoutObject.node(); |
| 89 ASSERT(node); | 89 ASSERT(node); |
| 90 ASSERT(node->isSVGElement()); | 90 ASSERT(node->isSVGElement()); |
| 91 | 91 |
| 92 return isSVGTextPositioningElement(*node) ? toSVGTextPositioningElement(node
) : 0; | 92 return isSVGTextPositioningElement(*node) ? toSVGTextPositioningElement(node
) : 0; |
| 93 } | 93 } |
| 94 | 94 |
| 95 } | 95 } |
| OLD | NEW |