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; writing-mode:vertical-lr; columns:3; column-fill:
auto; column-gap:10px; width:100px; height:350px;"> |
| 5 <div style="columns:2; column-fill:auto; column-gap:10px; width:200px;"> |
| 6 <div style="width:250px;"></div> |
| 7 <div id="in-second-row" style="width:20px;"></div> |
| 8 </div> |
| 9 </div> |
| 10 |
| 11 <script> |
| 12 test(function() { |
| 13 assert_equals(document.getElementById('in-second-row').offsetLeft, 50); |
| 14 assert_equals(document.getElementById('in-second-row').offsetTop, 120); |
| 15 }, "offsetLeft and offsetTop in vertical-lr in nested multicol"); |
| 16 </script> |
OLD | NEW |