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

Side by Side Diff: LayoutTests/fast/multicol/old/continuation-crash.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 Test passes if it does not crash. 3 Test passes if it does not crash.
4 <style> 4 <style>
5 .column-layout { -webkit-column-count: 1; } 5 .column-layout { -webkit-column-count: 1; }
6 .column-span-all { -webkit-column-span: all; } 6 .column-span-all { -webkit-column-span: all; }
7 .after-content:after { display: block; content: "" } 7 .after-content:after { display: block; content: "" }
8 </style> 8 </style>
9 <div class="column-layout"> 9 <div class="column-layout">
10 <span class="after-content"> 10 <span class="after-content">
11 <div></div> 11 <div></div>
12 </span> 12 </span>
13 <div class="column-span-all"></div> 13 <div class="column-span-all"></div>
14 </div> 14 </div>
15 <script> 15 <script>
16 if (window.testRunner) 16 if (window.testRunner)
17 testRunner.dumpAsText(); 17 testRunner.dumpAsText();
18 </script> 18 </script>
19 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698