| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 SVGPathElement& pathElement = toSVGPathElement(*targetElement); | 51 SVGPathElement& pathElement = toSVGPathElement(*targetElement); |
| 52 | 52 |
| 53 Path pathData; | 53 Path pathData; |
| 54 updatePathFromGraphicsElement(&pathElement, pathData); | 54 updatePathFromGraphicsElement(&pathElement, pathData); |
| 55 | 55 |
| 56 // Spec: The transform attribute on the referenced 'path' element represent
s a | 56 // Spec: The transform attribute on the referenced 'path' element represent
s a |
| 57 // supplemental transformation relative to the current user coordinate syste
m for | 57 // supplemental transformation relative to the current user coordinate syste
m for |
| 58 // the current 'text' element, including any adjustments to the current user
coordinate | 58 // the current 'text' element, including any adjustments to the current user
coordinate |
| 59 // system due to a possible transform attribute on the current 'text' elemen
t. | 59 // system due to a possible transform attribute on the current 'text' elemen
t. |
| 60 // http://www.w3.org/TR/SVG/text.html#TextPathElement | 60 // http://www.w3.org/TR/SVG/text.html#TextPathElement |
| 61 pathData.transform(pathElement.animatedLocalTransform()); | 61 pathData.transform(pathElement.calculateAnimatedLocalTransform()); |
| 62 return pathData; | 62 return pathData; |
| 63 } | 63 } |
| 64 | 64 |
| 65 float RenderSVGTextPath::startOffset() const | 65 float RenderSVGTextPath::startOffset() const |
| 66 { | 66 { |
| 67 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsP
ercentage(); | 67 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsP
ercentage(); |
| 68 } | 68 } |
| 69 | 69 |
| 70 } | 70 } |
| OLD | NEW |