| Index: third_party/WebKit/WebCore/rendering/RenderSVGRoot.cpp
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/rendering/RenderSVGRoot.cpp (revision 5296)
|
| +++ third_party/WebKit/WebCore/rendering/RenderSVGRoot.cpp (working copy)
|
| @@ -259,6 +259,12 @@
|
| current->absoluteRects(rects, 0, 0);
|
| }
|
|
|
| +void RenderSVGRoot::absoluteQuads(Vector<FloatQuad>& quads, bool topLevel)
|
| +{
|
| + for (RenderObject* current = firstChild(); current != 0; current = current->nextSibling())
|
| + current->absoluteQuads(quads);
|
| +}
|
| +
|
| AffineTransform RenderSVGRoot::absoluteTransform() const
|
| {
|
| AffineTransform ctm = RenderContainer::absoluteTransform();
|
|
|