Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / subtree-root-clip.html
blob46a2876c632bb88214654db63071b33f91c7c46c
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script src="resources/text-based-repaint.js"></script>
5 <script>
6 function repaintTest()
8 document.getElementById("inner").style.width = "0";
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>