Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / inline / inline-child-height-width-calc-crash.html
blob373cc1583d749611e261efbddeffdea7e8d2a665
1 <html>
2 <head>
3 <script>
4 if (window.testRunner)
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
10 function runTest() {
11 brElement = document.getElementById('test');
12 document.open();
13 setTimeout(function () {
14 document.appendChild(brElement);
16 alert('PASS');
17 if (window.testRunner)
18 testRunner.notifyDone();
19 }, 0);
21 </script>
22 </head>
23 <body onload="runTest()">
24 <br id='test'>
25 </body>
26 </html>