OLD | NEW |
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> |
OLD | NEW |