Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / overflow-flipped-writing-mode-block.html
1 <script src="resources/repaint.js"></script>
2 <script>
3     onload = runRepaintTest;
4
5     function repaintTest()
6     {
7         document.getElementById("target").style.visibility = "hidden";
8     }
9 </script>
10 <div style="height: 100px; width: 100px; background-color: red; -webkit-writing-mode: horizontal-bt;">
11     <div style="height: 25px;">
12         <div style="height: 100px; background-color: green;"></div>
13     </div>
14 </div>
15 <div id="target" style="height: 50px; width: 100px; background-color: red; margin-top: -100px;"></div>