Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / multiple-captions-crash2.xhtml
blob92b0c63e6277fc64db0d499de29ebb83291364dc
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 <caption>Text in caption 1</caption>
21 <caption id="test">
22 <a>Text in caption 2</a>
23 </caption>
24 <caption>
25 <div id="test2">
26 <a>Text in caption 3</a>
27 </div>
28 </caption>
29 </body>
30 </html>