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..5fe5e18c7703281619bab35bee033a9d236678ed |
--- /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.offsetWidth; // 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> |