Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / custom / reparent-unwrapped-custom-element-crash.html
blob9d956aed028ca1d534c52ec2225a8f4f15cc435e
1 <script src="../../../js-test.js"></script>
2 <body>
3 If this doesn't crash, it passed.
4 <iframe id=iframe src=resources/empty-custom-body.html></iframe>
5 </body>
6 <script>
7 jsTestIsAsync = true;
9 if (testRunner)
10 testRunner.dumpAsText();
12 iframe.onload = function() {
13 document.body.appendChild(iframe.contentDocument.documentElement);
14 document.querySelector('#thebody');
15 iframe.remove();
16 finishJSTest();
19 successfullyParsed = true;
20 </script>