1 <!-- Based on fast/repaint/multicol-with-relpos.html -->
3 <script src=
"resources/paint-invalidation-test.js"></script>
5 onload
= runPaintInvalidationTest
;
6 window
.expectedPaintInvalidationObjects
= [
7 "LayoutBlockFlow (relative positioned) DIV id='target'",
9 function paintInvalidationTest() {
10 var target
= document
.getElementById('target');
11 target
.style
.visibility
= 'visible';
14 <div style=
"-webkit-columns:4; -webkit-column-gap:10px; column-fill:auto; width:630px; height:40px; color:green;">
21 <div id=
"target" style=
"position:relative; left:20px; top:20px; height:20px; visibility:hidden; background:green;"></div>
23 <p>A green rectangle should be seen above.
</p>