1 <!-- Based on fast/repaint/destroy-scrollbar.html -->
3 <script src=
"resources/paint-invalidation-test.js"></script>
5 window
.expectedPaintInvalidationObjects
= [
7 "LayoutBlockFlow (positioned) DIV",
9 function paintInvalidationTest() {
10 document
.getElementById('content').style
.height
= '100px';
12 onload
= runPaintInvalidationTest
;
14 Tests invalidation when a scrollbar is destroyed. Passes if there is no scrollbar.
15 <div style=
"position: absolute; top: 100px; left: 0; width: 200px; height: 200px; overflow: auto">
16 <div id=
"content" style=
"width: 100px; height: 400px"></div>