Index: LayoutTests/fast/multicol/multicol-becomes-paged-auto-height.html |
diff --git a/LayoutTests/fast/multicol/multicol-becomes-paged-auto-height.html b/LayoutTests/fast/multicol/multicol-becomes-paged-auto-height.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d8abe455a15309761d56ff1cdd70f274395fb3cc |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/multicol-becomes-paged-auto-height.html |
@@ -0,0 +1,23 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
esprehn
2014/04/09 18:19:08
Remove <html>, <head> and <body> from all the test
mstensho (USE GERRIT)
2014/04/09 18:58:27
Done.
|
+ <script> |
+ function test() { |
esprehn
2014/04/09 18:19:08
onload = function() {
mstensho (USE GERRIT)
2014/04/09 18:58:27
Done.
|
+ var elm = document.getElementById('elm'); |
+ elm.offsetTop; // trigger layout |
+ elm.style.WebkitColumns = 'auto'; |
+ elm.style.columns = 'auto'; |
+ elm.style.overflow = '-webkit-paged-x'; |
+ } |
+ </script> |
+ </head> |
+ <body onload="test()"> |
+ <p>There should be a blue <em>square</em> below, and no scrollbar.</p> |
+ <div id="elm" style="-webkit-columns:4; columns:4; orphans:1; widows:1; width:16em; line-height:4em; background:blue;"> |
+ <br> |
+ <br> |
+ <br> |
+ <br> |
+ </div> |
+ </body> |
+</html> |