forked from mirrors/gecko-dev
Automatic update from web-platform-tests
Replace some assert_throws("Something", stuff) calls with assert_throws_dom. (#21377)
This diff was generated by running:
find . -type f -print0 | xargs -0 perl -pi -e 'BEGIN { $/ = undef; } s/assert_throws\(([ \n]*"[A-Za-z_]*") *(, *.)/assert_throws_dom(\1\2/gs'
followed by a fix to
xhr/resources/send-after-setting-document-domain-window-helper.js to make
xhr/send-after-setting-document-domain.htm pass.
This does affect indentation poorly in cases when the first arg was on the same
line as the assert_throws, there was a newline after the ',' after the first
arg, and the following args were lined up with the first arg. Fixing that,
especially when there are multiple lines after the first arg, is not trivial
with a regexp.
Co-authored-by: Boris Zbarsky <bzbarsky@mit.edu>
--
wpt-commits: 3696f2233a37437896505b7187968aa605be9255
wpt-pr: 21377
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<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"/>
|
|
<link rel="help" href="https://w3c.github.io/DOM-Parsing/#widl-Element-innerHTML"/>
|
|
<link rel="help" href="http://www.whatwg.org/html5/#xml-fragment-serialization-algorithm"/>
|
|
<link rel="help" href="http://www.whatwg.org/html5/#document.title"/>
|
|
<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>
|