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

Unified Diff: Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp

Issue 19097005: Remove one SVG animated type special case from the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix the regressions 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
diff --git a/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp b/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
index 1fdea13e48c5248f7020a0668cb6cca00ca134df..fae85bcd46a8585d33b9382cf0ef8569b68e5c79 100644
--- a/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
+++ b/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
@@ -179,11 +179,11 @@ static inline void updateCharacterData(unsigned i, float& lastRotation, SVGChara
void SVGTextLayoutAttributesBuilder::fillCharacterDataMap(const TextPosition& position)
{
- const SVGLengthList& xList = position.element->x();
- const SVGLengthList& yList = position.element->y();
- const SVGLengthList& dxList = position.element->dx();
- const SVGLengthList& dyList = position.element->dy();
- const SVGNumberList& rotateList = position.element->rotate();
+ const SVGLengthList& xList = position.element->xCurrentValue();
+ const SVGLengthList& yList = position.element->yCurrentValue();
+ const SVGLengthList& dxList = position.element->dxCurrentValue();
+ const SVGLengthList& dyList = position.element->dyCurrentValue();
+ const SVGNumberList& rotateList = position.element->rotateCurrentValue();
unsigned xListSize = xList.size();
unsigned yListSize = yList.size();

Powered by Google App Engine
This is Rietveld 408576698