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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/span/in-nested-multicol-with-soft-breaks-inside-expected.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 .line { clear:both; }
4 .fakeColumn { float:left; width:1em; }
5 .fakeSpan { float:left; width:2em; }
6 .first { color:green; }
7 .second { color:blue; }
8 </style>
9 <p>Test that a column-span:all in an inner multicol container breaks nicely with in the outer
10 multicol container.</p>
11 <p>There should be two lines with letters below, with large letter spacing. The first line should
12 have green letters. The second line should have blue letters.</p>
13 <div style="font:16px/30px monospace;">
14 <div class="line first">
15 <div class="fakeColumn">C</div>
16 <div class="fakeColumn">A</div>
17 <div class="fakeSpan">N</div>
18 <div class="fakeSpan">I</div>
19 <div class="fakeColumn">B</div>
20 <div class="fakeColumn">E</div>
21 </div>
22 <div class="line second">
23 <div class="fakeSpan">M</div>
24 <div class="fakeSpan">R</div>
25 <div class="fakeColumn">B</div>
26 <div class="fakeColumn">E</div>
27 <div class="fakeColumn">E</div>
28 <div class="fakeColumn">R</div>
29 </div>
30 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698