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

Side by Side Diff: LayoutTests/fast/multicol/span/in-nested-multicol-with-list-item.html

Issue 1108633002: [New Multicolumn] Only the nearest ancestral flow thread may serve as a containing flow thread. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <style>
7 .mc { -webkit-column-count:3; }
8 .li { display:list-item; }
9 .spanner { -webkit-column-span:all; }
10 </style>
11 <p>PASS if no assertion failure or crash.</p>
12 <div class="mc">
13 <div class="mc">
14 <div class="li spanner"></div>
15 <div class="mc spanner"></div>
16 </div>
17 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698