blob: efd2812531e5199c1da49e1ea8867c5cd8c82a63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<script src="../../resources/check-layout.js"></script>
<p>The word BOMBINATE should be seen below.</p>
<div id="outer" style="position:relative; overflow:hidden; -webkit-column-count:2; -webkit-column-gap:0; column-fill:auto; width:500px; height:70px; line-height:20px;">
<div data-expected-height="110" style="-webkit-column-count:2; -webkit-column-gap:0;">
<div style="height:120px;"></div>
<br> <!-- last line in second column in first row. Exactly no space left after this. -->
<br> <!-- first line in first column in second row. -->
<br> <!-- second line in first column in second row. -->
<br> <!-- first line in second column in second row. -->
<br> <!-- second line in second column in second row. -->
</div>
<!-- There should be exactly 30px left in the second outer column. -->
<div data-offset-x="250" data-offset-y="40" style="line-height:30px;">BOMBINATE</div>
</div>
<script>
checkLayout("#outer");
</script>
|