Index: Source/core/css/resolver/StyleAdjuster.cpp |
diff --git a/Source/core/css/resolver/StyleAdjuster.cpp b/Source/core/css/resolver/StyleAdjuster.cpp |
index 624d735a327c199e7d7222c5b86249324fd82225..2588c1e819d100c374c585f7eebaa737c2cb3b35 100644 |
--- a/Source/core/css/resolver/StyleAdjuster.cpp |
+++ b/Source/core/css/resolver/StyleAdjuster.cpp |
@@ -402,13 +402,9 @@ void StyleAdjuster::adjustOverflow(RenderStyle* style, Element* element) |
if (element && element->isSVGElement()) { |
if (style->overflowY() == OSCROLL) |
style->setOverflowY(OHIDDEN); |
- else if (style->overflowY() == OAUTO) |
- style->setOverflowY(OVISIBLE); |
if (style->overflowX() == OSCROLL) |
style->setOverflowX(OHIDDEN); |
- else if (style->overflowX() == OAUTO) |
- style->setOverflowX(OVISIBLE); |
} |
} |