Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / subtree-root-clip.html
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4     <script src="resources/repaint.js"></script>
5     <script>
6         function repaintTest()
7         {
8             document.getElementById("inner").style.width = "0";
9         }
10     </script>
11 </head>
12 <body onload="runRepaintTest()">
13 <div style="float: left; overflow: hidden; width: 100px; height: 100px; background-color: green;">
14     <div id="inner" style="width: 100px; height: 100px; background-color: red;"></div>
15 </div>
16 </body>
17 </html>