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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/column-span-inside-multicol-webkit-box.html

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: Created 6 years, 7 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 p { -webkit-column-span: all; } 4 p { -webkit-column-span: all; }
5 body { display: -webkit-box; -webkit-column-count: 3;} 5 body { display: -webkit-box; -webkit-column-count: 3;}
6 </style> 6 </style>
7 </head> 7 </head>
8 <body> 8 <body>
9 <script> 9 <script>
10 if (window.internals)
11 internals.settings.setRegionBasedColumnsEnabled(true);
10 if (window.testRunner) 12 if (window.testRunner)
11 testRunner.dumpAsText(); 13 testRunner.dumpAsText();
12 document.body.offsetTop; 14 document.body.offsetTop;
13 document.body.appendChild(document.createElement('p')); 15 document.body.appendChild(document.createElement('p'));
14 document.write("Test passes if no crash."); 16 document.write("Test passes if no crash.");
15 </script> 17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698