1 <!-- Based on fast/repaint/resize-scrollable-div.html -->
3 <script src=
"resources/paint-invalidation-test.js"></script>
5 window
.expectedPaintInvalidationObjects
= [
10 "HorizontalScrollbar",
11 "HorizontalScrollbar",
12 "LayoutBlockFlow DIV id='div'",
14 function paintInvalidationTest() {
15 document
.getElementById('div').style
.width
='300px';
16 document
.getElementById('div').style
.height
='300px';
18 onload
= runPaintInvalidationTest
;
20 <div style=
"height: 100px">
21 Tests paint invalidation of scrollbars and scroll corner when a srollable div is resized.
22 Passes if the scrollbars and scroll corner are repainted correctly, and no under-invalidation
23 in slimming-paint mode (with slimmingPaintUnderInvalidationChecking enabled).
25 <div id=
"div" style=
"width: 100px; height: 100px; overflow: scroll"></div>