Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /domparsing/innerhtml-01.xhtml - WPT Dashboard Interop Dashboard
<head>
<title>innerHTML in XHTML: getting while the document is in an invalid state</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() {
document.documentElement.appendChild(document.createElement("test:test"));
assert_throws_dom("INVALID_STATE_ERR", function() {
document.documentElement.innerHTML;
}, "getting element with \":\" in its local name");
});
test(function() {
document.title = "\f";
assert_throws_dom("INVALID_STATE_ERR", function() {
document.getElementsByTagName("title")[0].innerHTML;
}, "Getting a Text node whose data contains characters that are not matched by the XML Char production");
});
</script>
</body>
</html>