1 <!-- Based on fast/repaint/horizontal-bt-overflow-same.html -->
9 border:
1px solid black;
13 -webkit-writing-mode: horizontal-bt;
22 background-color: orange;
28 <div class=
"horizontal-bt container">
29 <div class=
"offset"></div>
30 <div class=
"target"></div>
32 An orange rect should be painted.
<br/>
33 In DumpRenderTree, there should be repaint logs of
100x100 rect. We don't care how many times is the log dumpped.
34 <script src=
"../../../fast/repaint/../../resources/run-after-layout-and-paint.js"></script>
35 <script src=
"resources/paint-invalidation-test.js"></script>
37 window
.expectedPaintInvalidationObjects
= [
38 "LayoutBlockFlow DIV class='target'",
40 function paintInvalidationTest() {
41 var target
= document
.getElementsByClassName("target")[0];
42 target
.style
.visibility
= "visible";
44 var container
= document
.getElementsByClassName("container")[0];
45 runAfterLayoutAndPaint(function() {
46 container
.scrollTop
= 0;
47 runPaintInvalidationTest();