Index: LayoutTests/scrollbars/scrollbar-large-overflow-rectangle.html |
diff --git a/LayoutTests/scrollbars/scrollbar-large-overflow-rectangle.html b/LayoutTests/scrollbars/scrollbar-large-overflow-rectangle.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..94273b34535d1c39cf8081c74d1c6edc59812e91 |
--- /dev/null |
+++ b/LayoutTests/scrollbars/scrollbar-large-overflow-rectangle.html |
@@ -0,0 +1,41 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>absolute positioned element with large negative top value inside tall relative positioned box does not render scrollbars</title> |
+ <style> |
+ body, p{ |
+ margin:0; |
+ } |
+ div{ |
+ position: relative; |
+ height:3000px; |
+ } |
+ span{ |
+ position: absolute; |
+ top:-3355400000px; |
+ } |
+ </style> |
+ <script> |
+ if (window.testRunner) { |
+ testRunner.dumpAsText(); |
+ } |
+ |
+ function test() { |
+ var height = document.body.scrollHeight; |
+ if (height == 3000) |
+ document.getElementById("result").innerHTML = "PASS"; |
+ else |
+ document.getElementById("result").innerHTML = "<p style='color:red'>FAIL document.body.scrollHeight = " + height +"</p>"; |
+ } |
+ </script> |
+ </head> |
+ |
+ <body onload="test()"> |
+ <div> |
+ <p> This page should be scrollable </p> |
+ <p id="result"> </p> |
+ <span style="visibility:hidden">filler <!--abs pos with very large negative top value--></span> |
+ </div> |
+ |
+ </body> |
+</html> |