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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/span/summary-split.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 <p>Test that summary elements will always be blocks, even if attempted displayed as table-row, and 2 <p>Test that summary elements will always be blocks, even if attempted displayed as table-row, and
3 that a spanner splitting it doesn't have any ill effects.</p> 3 that a spanner splitting it doesn't have any ill effects.</p>
4 <p>Below you should see 'PASS' three times. Letter spacing will vary.</p> 4 <p>Below you should see 'PASS' three times. Letter spacing will vary.</p>
5 <div id="container" style="display:none; -webkit-columns:4; -webkit-column-gap:0 ; width:4em;"> 5 <div id="container" style="display:none; -webkit-columns:4; -webkit-column-gap:0 ; width:4em; orphans:1; widows:1;">
6 <summary style="display:table-row;"> 6 <summary style="display:table-row;">
7 P<br>A<br>S<br>S 7 P<br>A<br>S<br>S
8 <div style="-webkit-column-span:all;">PASS</div> 8 <div style="-webkit-column-span:all;">PASS</div>
9 P<br>A<br>S<br>S 9 P<br>A<br>S<br>S
10 </summary> 10 </summary>
11 </div> 11 </div>
12 <script> 12 <script>
13 onload = function() { 13 onload = function() {
14 document.body.offsetTop; 14 document.body.offsetTop;
15 document.getElementById('container').style.display = "block"; 15 document.getElementById('container').style.display = "block";
16 } 16 }
17 </script> 17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698