| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 markForLayoutAndParentResourceInvalidation(layoutObject); | 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& layoutObject) | 83 SVGTextPositioningElement* SVGTextPositioningElement::elementFromRenderer(Layout
Object& layoutObject) |
| 84 { | 84 { |
| 85 if (!layoutObject.isSVGText() && !layoutObject.isSVGInline()) | 85 if (!layoutObject.isSVGText() && !layoutObject.isSVGInline()) |
| 86 return 0; | 86 return nullptr; |
| 87 | 87 |
| 88 Node* node = layoutObject.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 |