blob: 1dced9f653c8953ec73a84bc85ca668b03a87ca4 [file] [log] [blame]
<!doctype html>
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<script>
[
"createDocument()",
"createDocument('http://example.com/')",
"createDocumentType()",
"createDocumentType('svg:svg')",
"createDocumentType('svg:svg', '-//W3C//DTD SVG 1.1//EN')"
].forEach(function(expr)
{
shouldThrow("document.implementation." + expr);
});
</script>
</body>
</html>