Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / zoom-on-unattached.html
blob58feb864ff865aaca6385c20a31895a32628c1b9
1 <script>
2 if (window.testRunner)
3 testRunner.dumpAsText();
5 root = document.createElement("body");
6 d = document.implementation.createDocument(null, "");
7 d.adoptNode(root);
8 node = document.createElement("title");
9 root.appendChild(node);
10 node.setAttribute("style", "zoom:document;")
11 node.appendChild(node.cloneNode());
12 </script>
13 <body>
14 This test passes if it does not crash.
15 </body>