| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2010 Rob Buis <rwlbuis@gmail.com> | 3 * Copyright (C) 2010 Rob Buis <rwlbuis@gmail.com> |
| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 return; | 131 return; |
| 132 | 132 |
| 133 if (!id.isEmpty()) { | 133 if (!id.isEmpty()) { |
| 134 document().accessSVGExtensions().addPendingResource(id, this); | 134 document().accessSVGExtensions().addPendingResource(id, this); |
| 135 ASSERT(hasPendingResources()); | 135 ASSERT(hasPendingResources()); |
| 136 } | 136 } |
| 137 } else if (isSVGPathElement(*target)) { | 137 } else if (isSVGPathElement(*target)) { |
| 138 // Register us with the target in the dependencies map. Any change of hr
efElement | 138 // Register us with the target in the dependencies map. Any change of hr
efElement |
| 139 // that leads to relayout/repainting now informs us, so we can react to
it. | 139 // that leads to relayout/repainting now informs us, so we can react to
it. |
| 140 addReferenceTo(toSVGElement((target))); | 140 addReferenceTo(toSVGElement((target))); |
| 141 if (LayoutObject* object = layoutObject()) |
| 142 markForLayoutAndParentResourceInvalidation(object); |
| 141 } | 143 } |
| 142 } | 144 } |
| 143 | 145 |
| 144 Node::InsertionNotificationRequest SVGTextPathElement::insertedInto(ContainerNod
e* rootParent) | 146 Node::InsertionNotificationRequest SVGTextPathElement::insertedInto(ContainerNod
e* rootParent) |
| 145 { | 147 { |
| 146 SVGTextContentElement::insertedInto(rootParent); | 148 SVGTextContentElement::insertedInto(rootParent); |
| 147 buildPendingResource(); | 149 buildPendingResource(); |
| 148 return InsertionDone; | 150 return InsertionDone; |
| 149 } | 151 } |
| 150 | 152 |
| 151 void SVGTextPathElement::removedFrom(ContainerNode* rootParent) | 153 void SVGTextPathElement::removedFrom(ContainerNode* rootParent) |
| 152 { | 154 { |
| 153 SVGTextContentElement::removedFrom(rootParent); | 155 SVGTextContentElement::removedFrom(rootParent); |
| 154 if (rootParent->inDocument()) | 156 if (rootParent->inDocument()) |
| 155 clearResourceReferences(); | 157 clearResourceReferences(); |
| 156 } | 158 } |
| 157 | 159 |
| 158 bool SVGTextPathElement::selfHasRelativeLengths() const | 160 bool SVGTextPathElement::selfHasRelativeLengths() const |
| 159 { | 161 { |
| 160 return m_startOffset->currentValue()->isRelative() | 162 return m_startOffset->currentValue()->isRelative() |
| 161 || SVGTextContentElement::selfHasRelativeLengths(); | 163 || SVGTextContentElement::selfHasRelativeLengths(); |
| 162 } | 164 } |
| 163 | 165 |
| 164 } // namespace blink | 166 } // namespace blink |
| OLD | NEW |