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

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

Issue 19914002: Use toSVGPathElement() instead of static_cast<> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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
« no previous file with comments | « no previous file | Source/core/rendering/svg/SVGPathData.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 22 matching lines...) Expand all
33 { 33 {
34 } 34 }
35 35
36 Path RenderSVGTextPath::layoutPath() const 36 Path RenderSVGTextPath::layoutPath() const
37 { 37 {
38 SVGTextPathElement* textPathElement = static_cast<SVGTextPathElement*>(node( )); 38 SVGTextPathElement* textPathElement = static_cast<SVGTextPathElement*>(node( ));
39 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPat hElement->hrefCurrentValue(), textPathElement->document()); 39 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPat hElement->hrefCurrentValue(), textPathElement->document());
40 if (!targetElement || !targetElement->hasTagName(SVGNames::pathTag)) 40 if (!targetElement || !targetElement->hasTagName(SVGNames::pathTag))
41 return Path(); 41 return Path();
42 42
43 SVGPathElement* pathElement = static_cast<SVGPathElement*>(targetElement); 43 SVGPathElement* pathElement = toSVGPathElement(targetElement);
44 44
45 Path pathData; 45 Path pathData;
46 updatePathFromGraphicsElement(pathElement, pathData); 46 updatePathFromGraphicsElement(pathElement, pathData);
47 47
48 // Spec: The transform attribute on the referenced 'path' element represent s a 48 // Spec: The transform attribute on the referenced 'path' element represent s a
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 static_cast<SVGTextPathElement*>(node())->startOffsetCurrentValue().v alueAsPercentage(); 59 return static_cast<SVGTextPathElement*>(node())->startOffsetCurrentValue().v alueAsPercentage();
60 } 60 }
61 61
62 bool RenderSVGTextPath::exactAlignment() const 62 bool RenderSVGTextPath::exactAlignment() const
63 { 63 {
64 return static_cast<SVGTextPathElement*>(node())->spacingCurrentValue() == SV GTextPathSpacingExact; 64 return static_cast<SVGTextPathElement*>(node())->spacingCurrentValue() == SV GTextPathSpacingExact;
65 } 65 }
66 66
67 bool RenderSVGTextPath::stretchMethod() const 67 bool RenderSVGTextPath::stretchMethod() const
68 { 68 {
69 return static_cast<SVGTextPathElement*>(node())->methodCurrentValue() == SVG TextPathMethodStretch; 69 return static_cast<SVGTextPathElement*>(node())->methodCurrentValue() == SVG TextPathMethodStretch;
70 } 70 }
71 71
72 } 72 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/svg/SVGPathData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698