Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<title>document.close in XHTML</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function() {
assert_throws_dom("INVALID_STATE_ERR", function() {
document.close();
}, "document.close in XHTML should throw an INVALID_STATE_ERR ");
}, "document.close in XHTML");
</script>
</body>
</html>