chromium/third_party/blink/web_tests/fast/css/zoom-on-unattached.html

<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:normal;")
node.appendChild(node.cloneNode());
</script>
<body>
This test passes if it does not crash.
</body>