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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/double-merge-anonymous-block-crash.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 <script> 3 <script>
4 if (window.internals)
5 internals.settings.setRegionBasedColumnsEnabled(true);
4 if (window.testRunner) 6 if (window.testRunner)
5 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
6 </script> 8 </script>
7 </head> 9 </head>
8 <style> 10 <style>
9 div { 11 div {
10 border: 5px solid maroon; 12 border: 5px solid maroon;
11 -webkit-column-count: 2; 13 -webkit-column-count: 2;
12 margin: 1em 0; 14 margin: 1em 0;
13 } 15 }
14 summary { 16 summary {
15 -webkit-column-span: all; 17 -webkit-column-span: all;
16 background-color: #eeeeee; 18 background-color: #eeeeee;
17 color: black; 19 color: black;
18 } 20 }
19 </style> 21 </style>
20 <body onload="document.open(); document.write('PASS, does not crash'); docum ent.close();"> 22 <body onload="document.open(); document.write('PASS, does not crash'); docum ent.close();">
21 <div> 23 <div>
22 <label>AAA 24 <label>AAA
23 <summary>BBB 25 <summary>BBB
24 </div> 26 </div>
25 </body> 27 </body>
26 </html> 28 </html>
27 29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698