Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / DOMImplementation / missing-arguments.html
blob1dced9f653c8953ec73a84bc85ca668b03a87ca4
1 <!doctype html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <script>
9 "createDocument()",
10 "createDocument('http://example.com/')",
11 "createDocumentType()",
12 "createDocumentType('svg:svg')",
13 "createDocumentType('svg:svg', '-//W3C//DTD SVG 1.1//EN')"
14 ].forEach(function(expr)
16 shouldThrow("document.implementation." + expr);
17 });
18 </script>
19 </body>
20 </html>