summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dom/text-node-attach-crash.xhtml
blob: 4df075cf8bac86810e9c8d7c839defcf8e2f4014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html xmlns="http://www.w3.org/1999/xhtml">
Test passes if it does not crash.
<style></style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

var docElement = document.documentElement;
document.removeChild(docElement); 
window.onload = function() {
    document.appendChild(docElement);
};
</script>
</html>