| Index: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-y-to-paged-x.html
|
| diff --git a/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-y-to-paged-x.html b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-y-to-paged-x.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..01b47de3de55b554c3eca684eea1b66bfc5ffd79
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-y-to-paged-x.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| + <head>
|
| + <script>
|
| + if (window.internals)
|
| + internals.settings.setRegionBasedColumnsEnabled(true);
|
| + </script>
|
| + <title>Changing from paged-y to paged-x</title>
|
| + <script>
|
| + function test() {
|
| + document.body.offsetTop; // trigger layout
|
| + document.body.style.overflow = 'paged-x';
|
| + document.body.style.overflow = '-webkit-paged-x';
|
| + }
|
| + </script>
|
| + </head>
|
| + <body style="overflow:-webkit-paged-y; overflow:paged-y;" onload="test()">
|
| + <div style="height:150vh;">
|
| + There should be a horizontal scrollbar on this page.
|
| + </div>
|
| + </body>
|
| +</html>
|
|
|