Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / table-section-overflow.html
blob87e8499af2028459c20500ee7f2dcaa2fb80d828
1 <html>
2 <head>
3 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12079</title>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
5 <script type="text/javascript">
6 function repaintTest()
8 document.getElementById("spacer").style.height = "50px";
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>