Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / multiple-captions-crash.xhtml
blobe1dd7137003d5e744ad18b6826e68eaf10b7207a
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <script type="text/javascript">
3 function runTest()
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 test = document.getElementById("test");
9 test2 = document.getElementById("test2");
10 inp = document.createElement("input");
12 document.body.offsetTop;
13 test.appendChild(inp);
14 test2.appendChild(inp);
15 document.body.offsetTop;
17 </script>
18 <body onload="runTest()">
19 Test passes if it does not crash.
20 <table>
21 <caption>Text in caption 1</caption>
22 <caption id="test">
23 <a>Text in caption 2</a>
24 </caption>
25 <caption>
26 <div id="test2">
27 <a>Text in caption 3</a>
28 </div>
29 </caption>
30 </table>
31 </body>
32 </html>