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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/update-after-content-before-child-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script>
4 if (window.internals)
5 internals.settings.setRegionBasedColumnsEnabled(true);
6 </script>
3 <body> 7 <body>
4 <style> 8 <style>
5 #columnContainer { -webkit-column-count: 600; } 9 #columnContainer { -webkit-column-count: 600; }
6 #divBlock::after { display: block; content: ''; } 10 #divBlock::after { display: block; content: ''; }
7 #columnSpanBlock:nth-last-child(even) { -webkit-column-span: all; } 11 #columnSpanBlock:nth-last-child(even) { -webkit-column-span: all; }
8 #table { float: right; } 12 #table { float: right; }
9 </style> 13 </style>
10 <script> 14 <script>
11 if (window.testRunner) 15 if (window.testRunner)
12 testRunner.dumpAsText(); 16 testRunner.dumpAsText();
(...skipping 16 matching lines...) Expand all
29 divBlock.appendChild(table); 33 divBlock.appendChild(table);
30 document.designMode = 'on'; 34 document.designMode = 'on';
31 document.execCommand('selectall'); 35 document.execCommand('selectall');
32 document.execCommand('inserttext', ''); 36 document.execCommand('inserttext', '');
33 document.body.offsetTop; 37 document.body.offsetTop;
34 document.body.innerHTML = "PASS. WebKit didn't crash."; 38 document.body.innerHTML = "PASS. WebKit didn't crash.";
35 } 39 }
36 </script> 40 </script>
37 </body> 41 </body>
38 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698