Index: LayoutTests/fast/dom/Element/resources/scrollable-iframe-strict.html |
diff --git a/LayoutTests/fast/dom/Element/resources/scrollable-iframe-strict.html b/LayoutTests/fast/dom/Element/resources/scrollable-iframe-strict.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c410d3767ea23d125309578cd59195ce483539d6 |
--- /dev/null |
+++ b/LayoutTests/fast/dom/Element/resources/scrollable-iframe-strict.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+ <head> |
+ <style> |
+ div { |
+ height: 9999px; |
+ width: 9999px; |
+ } |
+ </style> |
+ <script> |
+ function scroll() { |
+ window.scrollTo(4000,5000); |
+ parent.verifyTest() |
+ } |
+ </script> |
+ </head> |
+<body onload="scroll()"> |
+ <div></div> |
+</body> |
+</html> |