Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / table-section-overflow.html
1 <html>
2 <head>
3     <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12079</title>
4     <script src="resources/repaint.js" type="text/javascript"></script>
5     <script type="text/javascript">
6         function repaintTest()
7         {
8             document.getElementById("spacer").style.height = "50px";
9         }
10     </script>
11 </head>
12 <body onload="runRepaintTest()">
13     <div id="spacer" style="width: 0;"></div>
14     <table cellpadding="0" cellspacing="0" style="margin-left: 50px;">
15         <tr>
16             <td>
17                 <div style="width: 50px;">
18                     <div style="background-color: green; width: 100px; height: 100px; margin-left: -25px;"></div>
19                 </div>
20             </td>
21         </tr>
22     </table>
23 </body>
24 </html>