OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../../resources/testharness.js"></script> |
| 3 <script src="../../../resources/testharnessreport.js"></script> |
| 4 <div style="position:relative; border:10px solid; columns:3; column-gap:0; colum
n-fill:auto; width:300px;"> |
| 5 <div></div> |
| 6 <!-- In front of the spanner there's only a zero-height DIV. This does still
count as column |
| 7 content, and we'll therefore establish a zero-height column set in fron
t of the spanner, as |
| 8 well as one after it (which happens to have non-zero-height content). N
o flow thread offset |
| 9 should map to the first column set, since it's completely empty. --> |
| 10 <div style="column-span:all; height:50px;"></div> |
| 11 <div id="elm1" style="height:100px;"></div> |
| 12 <div id="elm2" style="height:100px;"></div> |
| 13 <div id="elm3" style="height:100px;"></div> |
| 14 </div> |
| 15 <script> |
| 16 test(function() { |
| 17 assert_equals(document.getElementById('elm1').offsetTop, 50); |
| 18 assert_equals(document.getElementById('elm2').offsetTop, 50); |
| 19 assert_equals(document.getElementById('elm3').offsetTop, 50); |
| 20 }, "columns following a spanner following empty content"); |
| 21 </script> |
OLD | NEW |