blob: 58feb864ff865aaca6385c20a31895a32628c1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<script>
if (window.testRunner)
testRunner.dumpAsText();
root = document.createElement("body");
d = document.implementation.createDocument(null, "");
d.adoptNode(root);
node = document.createElement("title");
root.appendChild(node);
node.setAttribute("style", "zoom:document;")
node.appendChild(node.cloneNode());
</script>
<body>
This test passes if it does not crash.
</body>
|