Index: LayoutTests/fast/pagination/html-make-paginated.html |
diff --git a/LayoutTests/fast/pagination/html-make-paginated.html b/LayoutTests/fast/pagination/html-make-paginated.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d2f3a1891c6464da4a4978d4a593e61b49536574 |
--- /dev/null |
+++ b/LayoutTests/fast/pagination/html-make-paginated.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>Dynamically set paged overflow on the root element</title> |
+ <script> |
+ function test() { |
+ document.body.offsetTop; // trigger layout |
+ document.documentElement.style.overflow = '-webkit-paged-x'; |
+ document.documentElement.style.overflow = 'paged-x'; |
+ } |
+ </script> |
+ </head> |
+ <body onload="test()"> |
+ <div style="height:150vh;"> |
+ There should be no text below. |
+ <div style="-webkit-column-break-before:always;">FAIL</div> |
+ </div> |
+ </body> |
+</html> |