Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: Source/core/rendering/svg/RenderSVGTextPath.cpp

Issue 112003003: [SVG] SVGLength{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: revert aggressive svgAttributeChanged, add NeedsRebaseline Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 // supplemental transformation relative to the current user coordinate syste m for 49 // supplemental transformation relative to the current user coordinate syste m for
50 // the current 'text' element, including any adjustments to the current user coordinate 50 // the current 'text' element, including any adjustments to the current user coordinate
51 // system due to a possible transform attribute on the current 'text' elemen t. 51 // system due to a possible transform attribute on the current 'text' elemen t.
52 // http://www.w3.org/TR/SVG/text.html#TextPathElement 52 // http://www.w3.org/TR/SVG/text.html#TextPathElement
53 pathData.transform(pathElement->animatedLocalTransform()); 53 pathData.transform(pathElement->animatedLocalTransform());
54 return pathData; 54 return pathData;
55 } 55 }
56 56
57 float RenderSVGTextPath::startOffset() const 57 float RenderSVGTextPath::startOffset() const
58 { 58 {
59 return toSVGTextPathElement(node())->startOffsetCurrentValue().valueAsPercen tage(); 59 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsP ercentage();
60 } 60 }
61 61
62 } 62 }
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/RenderSVGText.cpp ('k') | Source/core/rendering/svg/RenderSVGTransformableContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698