| Index: third_party/WebKit/WebCore/rendering/RenderSVGTSpan.cpp
 | 
| ===================================================================
 | 
| --- third_party/WebKit/WebCore/rendering/RenderSVGTSpan.cpp	(revision 9391)
 | 
| +++ third_party/WebKit/WebCore/rendering/RenderSVGTSpan.cpp	(working copy)
 | 
| @@ -48,8 +48,8 @@
 | 
|      if (!object)
 | 
|          return;
 | 
|  
 | 
| -    int xRef = object->x() + x();
 | 
| -    int yRef = object->y() + y();
 | 
| +    int xRef = object->x();
 | 
| +    int yRef = object->y();
 | 
|   
 | 
|      for (InlineRunBox* curr = firstBox; curr; curr = curr->nextLineBox()) {
 | 
|          FloatRect rect(xRef + curr->xPos(), yRef + curr->yPos(), curr->width(), curr->height());
 | 
| @@ -68,8 +68,8 @@
 | 
|      if (!object)
 | 
|          return;
 | 
|  
 | 
| -    int xRef = object->x() + x();
 | 
| -    int yRef = object->y() + y();
 | 
| +    int xRef = object->x();
 | 
| +    int yRef = object->y();
 | 
|   
 | 
|      for (InlineRunBox* curr = firstBox; curr; curr = curr->nextLineBox()) {
 | 
|          FloatRect rect(xRef + curr->xPos(), yRef + curr->yPos(), curr->width(), curr->height());
 | 
| 
 |