Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/webappapis/dynamic-markup-insertion/document-write/document.write-01.xhtml - WPT Dashboard Interop Dashboard
<head>
<title>document.write 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.write("Failure: document.write actually worked");
}, "document.write in XHTML should throw an INVALID_STATE_ERR ");
}, "document.write in XHTML");
</script>
</body>
</html>