Index: LayoutTests/svg/in-html/overflow-repaint.html |
diff --git a/LayoutTests/svg/in-html/overflow-repaint.html b/LayoutTests/svg/in-html/overflow-repaint.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..397bc25669551541c93789ab2eddea506f83daf4 |
--- /dev/null |
+++ b/LayoutTests/svg/in-html/overflow-repaint.html |
@@ -0,0 +1,23 @@ |
+<!doctype html> |
+<head> |
+ <script src="../../fast/repaint/resources/text-based-repaint.js" type="text/javascript"></script> |
+ <script> |
+ function repaintTest() { |
+ document.getElementById("svg").style.overflow="visible"; |
+ } |
+ </script> |
+ <style> |
+ div { |
+ height:100px; width:100px; |
+ } |
+ div + div { background: red; } |
+ </style> |
+</head> |
+<body onload="runRepaintAndPixelTest()"> |
+ <div> |
+ <svg id="svg" height="100" width="100" viewbox="0 0 100 100"> |
+ <rect y="100" width="100" height="100" fill="green"/> |
+ </svg> |
+ </div> |
+ <div></div> |
+</body> |