OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- Floating the multicol just to make the output from testharness appear at |
| 3 the top of the page. --> |
| 4 <div style="float:right; width:100px; columns:2;"> |
| 5 <div style="columns:2;"> |
| 6 <div style="height:3px;"></div> |
| 7 <div style="columns:1;"> |
| 8 <div style="height:1px;"></div> |
| 9 <div style="height:1234567890px;"></div> |
| 10 </div> |
| 11 </div> |
| 12 </div> |
| 13 <script src="../../resources/testharness.js"></script> |
| 14 <script src="../../resources/testharnessreport.js"></script> |
| 15 <script> |
| 16 test(() => {}, "PASS if no crash or assertion failure"); |
| 17 </script> |
OLD | NEW |