| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp
|
| index 03facf1c306af08fe7467e4d465ed485c8f1ebf1..d7bf42b25575bebf4c7544d14a6476fbb5ae8dc6 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp
|
| @@ -44,6 +44,16 @@
|
| clearNeedsLayout();
|
| }
|
|
|
| +void LayoutSVGHiddenContainer::paint(const PaintInfo&, const LayoutPoint&) const
|
| +{
|
| + // This subtree does not paint.
|
| +}
|
| +
|
| +void LayoutSVGHiddenContainer::absoluteQuads(Vector<FloatQuad>&) const
|
| +{
|
| + // This subtree does not take up space or paint
|
| +}
|
| +
|
| bool LayoutSVGHiddenContainer::nodeAtFloatPoint(HitTestResult&, const FloatPoint&, HitTestAction)
|
| {
|
| return false;
|
|
|