Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / table-two-pass-layout-overpaint.html
1 <html>
2 <head>
3     <style>
4         table { background-color: lightblue; height: 100px; }
5         td { width: 100px; height: 50px; }
6         div#target { height: 25px; background-color: lightgreen; }
7     </style>
8     <script src="resources/repaint.js"></script>
9     <script>
10         function repaintTest()
11         {
12             document.getElementById("target").style.width = "50px";
13         }
14     </script>
15 </head>
16 <body onload="runRepaintTest()">
17 <table>
18     <tr>
19         <td>
20             <div id="target"></div>
21         </td>
22     </tr>
23 </table>
24 </body>
25 </html>