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/two-rows-then-spanner-then-two-rows.html

Issue 1909233002: Spec-compliant parsing and initial values for 'orphans' and 'widows'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some unit tests had non-conformant widphans assumptions too. Created 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 .first { color:blue; } 3 .first { color:blue; }
4 .second { color:olive; } 4 .second { color:olive; }
5 .third { color:brown; } 5 .third { color:brown; }
6 </style> 6 </style>
7 <p>There should be three lines of text below, with large letter spacing. The tex t on the first line should be blue, the ones on the second should be olive, and the ones on the third should be brown.</p> 7 <p>There should be three lines of text below, with large letter spacing. The tex t on the first line should be blue, the ones on the second should be olive, and the ones on the third should be brown.</p>
8 <div style="-webkit-columns:3; -webkit-column-gap:0; column-fill:auto; width:6em ; line-height:30px; height:90px;"> 8 <div style="-webkit-columns:3; -webkit-column-gap:0; column-fill:auto; width:6em ; line-height:30px; height:90px; orphans:1; widows:1;">
9 <div style="-webkit-columns:2; -webkit-column-gap:0;"> 9 <div style="-webkit-columns:2; -webkit-column-gap:0;">
10 <span class="first">S<br></span> 10 <span class="first">S<br></span>
11 <span class="second">T<br></span> 11 <span class="second">T<br></span>
12 <span class="third">B<br></span> 12 <span class="third">B<br></span>
13 <span class="first">E<br></span> 13 <span class="first">E<br></span>
14 <span class="second">H<br></span> 14 <span class="second">H<br></span>
15 <span class="third">E<br></span> 15 <span class="third">E<br></span>
16 <span class="first">R<br></span> 16 <span class="first">R<br></span>
17 <span class="first">V<br></span> 17 <span class="first">V<br></span>
18 <div style="-webkit-column-span:all;" class="second">E</div> 18 <div style="-webkit-column-span:all;" class="second">E</div>
19 <span class="third">E<br></span> 19 <span class="third">E<br></span>
20 <span class="third">R<br></span> 20 <span class="third">R<br></span>
21 <span class="first">E<br></span> 21 <span class="first">E<br></span>
22 </div> 22 </div>
23 </div> 23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698