Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / overflow-flipped-writing-mode-block-in-regions.html
1 <script src="resources/repaint.js"></script>
2 <script>
3     if (window.testRunner)
4         window.testRunner.overridePreference("WebKitCSSRegionsEnabled", "1");
5     onload = runRepaintTest;
6
7     function repaintTest()
8     {
9         document.getElementById("target").style.visibility = "hidden";
10     }
11 </script>
12 <div style="-webkit-flow-into: thread; height: 100px; width: 100px; background-color: red; -webkit-writing-mode: horizontal-bt;">
13     <div style="height: 25px;">
14         <div style="height: 100px; background-color: green;"></div>
15     </div>
16 </div>
17 <div id="target" style="-webkit-flow-into: thread; height: 50px; width: 100px; background-color: red; margin-top: -100px;"></div>
18 <div style="-webkit-flow-from: thread; width:100px;height:400px; border:2px solid black; position:absolute; left:100px; top:100px"></div>