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

Side by Side Diff: LayoutTests/fast/multicol/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, 6 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 Test passes if it does not crash.
4 <style>
5 .column-layout { -webkit-column-count: 1; }
6 .column-span-all { -webkit-column-span: all; }
7 .after-content:after { display: block; content: "" }
8 </style>
9 <div class="column-layout">
10 <span class="after-content">
11 <div></div>
12 </span>
13 <div class="column-span-all"></div>
14 </div>
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 </script>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698