Index: Source/core/frame/FrameView.cpp |
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp |
index 468b1f46de9512ab1afc3a88ba1ab5d9d3a67759..50d7ddcc97f3347b74c581bc89b42221163df61a 100644 |
--- a/Source/core/frame/FrameView.cpp |
+++ b/Source/core/frame/FrameView.cpp |
@@ -525,14 +525,6 @@ void FrameView::applyOverflowToViewportAndSetRenderer(RenderObject* o, Scrollbar |
EOverflow overflowX = o->style()->overflowX(); |
EOverflow overflowY = o->style()->overflowY(); |
- if (o->isSVGRoot()) { |
- // overflow is ignored in stand-alone SVG documents. |
- if (!toRenderSVGRoot(o)->isEmbeddedThroughFrameContainingSVGDocument()) |
- return; |
- overflowX = OHIDDEN; |
- overflowY = OHIDDEN; |
- } |
- |
bool ignoreOverflowHidden = false; |
if (m_frame->settings()->ignoreMainFrameOverflowHiddenQuirk() && m_frame->isMainFrame()) |
ignoreOverflowHidden = true; |