[svgwg] SVG Text Layout algorithm adjusts dx and dy wrong

karip has just created a new issue for https://github.com/w3c/svgwg:

== SVG Text Layout algorithm adjusts dx and dy wrong ==
The step 4.2.2 “Adjust positions: dx, dy” in the [text 
chapter](https://svgwg.org/svg2-draft/text.html#TextLayoutAlgorithm) 
uses wrong variables. It says:

“Let shift.x = shift.x + resolve_x[i] and shift.y = shift.y + 
resolve_y[i].”

I think it should be

“Let shift.x = shift.x + **resolve_dx**[i] and shift.y = shift.y + 
**resolve_dy**[i].”

Please view or discuss this issue at 
https://github.com/w3c/svgwg/issues/271 using your GitHub account

Received on Thursday, 15 September 2016 07:56:14 UTC