2 <script src=
"resources/text-based-repaint.js"></script>
5 onload
= runRepaintTest
;
8 function repaintTest() {
9 var target
= document
.getElementById('target');
10 target
.style
.visibility
= 'visible';
13 <p>A green rectangle should be seen below (if tested manually, you need to click first).
</p>
14 <div style=
"-webkit-columns:4; -webkit-column-gap:10px; column-fill:auto; width:630px; height:40px; font:20px/1 ahem; color:green;">
21 <!-- This absolutely positioned box is not part of the flow thread, since the nearest
22 non-statically positioned box is further up than that. -->
23 <div id=
"target" style=
"position:absolute; left:0; bottom:0; visibility:hidden;">PASS
</div>