Index: LayoutTests/svg/in-html/overflow-svg-root-attr-expected.html |
diff --git a/LayoutTests/svg/in-html/overflow-svg-root-attr-expected.html b/LayoutTests/svg/in-html/overflow-svg-root-attr-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e079a0f335baa19cf2becaceaae4983486d1985d |
--- /dev/null |
+++ b/LayoutTests/svg/in-html/overflow-svg-root-attr-expected.html |
@@ -0,0 +1,18 @@ |
+<!doctype html> |
+<style> |
+div { |
+ height:100px; width:250px; |
+} |
+ |
+</style> |
+<div><svg id="svg1" height="100" width="100"> |
+ <path d="M210 10 L90 10 L90 90" fill="blue"/> |
+</svg></div> |
+ |
+<div><svg id="svg2" height="100" width="100"> |
+ <path d="M210 10 L90 10 L90 90" fill="blue"/> |
+</svg></div> |
+ |
+<div><svg id="svg3" height="100" width="250"> |
+ <path d="M210 10 L90 10 L90 90" fill="blue"/> |
+</svg></div> |