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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/span/in-nested-multicol-with-soft-breaks-inside.html

Issue 1492993002: Support enclosing fragmentainer breaks inside spanners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 <style>
3 .first { color:green; }
4 .second { color:blue; }
5 </style>
6 <p>Test that a column-span:all in an inner multicol container breaks nicely with in the outer
7 multicol container.</p>
8 <p>There should be two lines with letters below, with large letter spacing. The first line should
9 have green letters. The second line should have blue letters.</p>
10 <div style="-webkit-columns:4; -webkit-column-gap:0; column-fill:auto; width:8em ; height:70px; font:16px/30px monospace;">
11 <div style="-webkit-columns:2; -webkit-column-gap:0;">
12 <span class="first">C<br></span>
13 <span class="first">A<br></span>
14 <div style="-webkit-column-span:all;">
15 <span class="second">M<br></span>
16 <span class="first">N<br></span>
17 <span class="second">R<br></span>
18 <span class="first">I<br></span>
19 </div>
20 <span class="second">B<br></span>
21 <span class="second">E<br></span>
22 <span class="first">B<br></span>
23 <span class="second">E<br></span>
24 <span class="first">E<br></span>
25 <span class="second">R<br></span>
26 </div>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698