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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/float-big-line.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 .columns { 3 .columns {
4 -webkit-columns: 2; 4 -webkit-columns: 2;
5 -webkit-column-gap: 0; 5 -webkit-column-gap: 0;
6 column-fill: auto; 6 column-fill: auto;
7 border: 2px solid black; 7 border: 2px solid black;
8 height: 400px; 8 height: 400px;
9 line-height: 20px; 9 line-height: 20px;
10 orphans: 1;
11 widows: 1;
10 } 12 }
11 .big { 13 .big {
12 font-size: 128px; 14 font-size: 128px;
13 line-height: 154px; 15 line-height: 154px;
14 } 16 }
15 .left { float: left; } 17 .left { float: left; }
16 </style> 18 </style>
17 <p>There should be a big T in the second column.</p> 19 <p>There should be a big T in the second column.</p>
18 <div class="columns"> 20 <div class="columns">
19 This is some text.<br> 21 This is some text.<br>
(...skipping 21 matching lines...) Expand all
41 This is some text.<br> 43 This is some text.<br>
42 This is some text.<br> 44 This is some text.<br>
43 This is some text.<br> 45 This is some text.<br>
44 This is some text.<br> 46 This is some text.<br>
45 This is some text.<br> 47 This is some text.<br>
46 This is some text.<br> 48 This is some text.<br>
47 This is some text.<br> 49 This is some text.<br>
48 This is some text.<br> 50 This is some text.<br>
49 </p> 51 </p>
50 </div> 52 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698