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
33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
function testThrowingNoParent(element, desc) {
|
|
test(function() {
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("afterend", "") }
|
|
);
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("beforebegin", "") }
|
|
);
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("afterend", "foo") }
|
|
);
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("beforebegin", "foo") }
|
|
);
|
|
}, "When the parent node is " + desc + ", insertAdjacentHTML should throw for beforebegin and afterend (text)");
|
|
test(function() {
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("afterend", "<!-- fail -->") }
|
|
);
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("beforebegin", "<!-- fail -->") }
|
|
);
|
|
}, "When the parent node is " + desc + ", insertAdjacentHTML should throw for beforebegin and afterend (comments)");
|
|
test(function() {
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("afterend", "<div></div>") }
|
|
);
|
|
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
|
|
function() { element.insertAdjacentHTML("beforebegin", "<div></div>") }
|
|
);
|
|
}, "When the parent node is " + desc + ", insertAdjacentHTML should throw for beforebegin and afterend (elements)");
|
|
}
|
|
|