Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: LayoutTests/fast/multicol/multicol-becomes-paged-auto-height.html

Issue 218663004: Changing between multicol and regular block shouldn't recreate all renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Actually test switching between multicol and non-multicol using the new implementation as well. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698