mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Automatic update from web-platform-tests
Replace some "promise_rejects(t, new FooError, stuff)" calls with promise_rejects_js.
This diff was generated by running:
find . -type f -print0 | xargs -0 perl -pi -e 'BEGIN { $/ = undef; } s/promise_rejects\(([ \n]*[a-zA-Z_]+[ \n]*,[ \n]*)(?:new )?([A-Z][A-Za-z]*Error) *(?:\(\))? *(, *.)/promise_rejects_js(\1\2\3/gs'
(which allows the optional "new" before "FooError" and an optional "()" after
it) and then:
1) Manually editing css/cssom-view/MediaQueryList-addListener-handleEvent.html
to make it get TypeError from the right global.
2) Manually editing fetch/api/response/response-error-from-stream.html to use
promise_rejects_exactly instead of the thing it was doing with a
CustomTestError.
3) Manually editing html/cross-origin-embedder-policy/require-corp.https.html
to use TypeError from the right global in the window.open case.
4) Manually editing
service-workers/service-worker/controller-with-no-fetch-event-handler.https.html
to use TypeError from the right global in the subframe case.
5) Manually editing
service-workers/service-worker/fetch-response-taint.https.html to use TypeError
from the right frame.
6) Manually editing
service-workers/service-worker/redirected-response.https.html to get the
TypeError from the right subframe in various places.
--
wpt-commits: ab733fd9f53eefdc034a2b96d08f080b355b6b10
wpt-pr: 21582
30 lines
958 B
JavaScript
30 lines
958 B
JavaScript
// META: script=../resources/utils.js
|
|
|
|
function checkKoUrl(url, desc) {
|
|
if (!desc)
|
|
desc = "Fetching " + url.substring(0, 45) + " is KO"
|
|
promise_test(function(test) {
|
|
var promise = fetch(url);
|
|
return promise_rejects_js(test, TypeError, promise);
|
|
}, desc);
|
|
}
|
|
|
|
var urlWithoutScheme = "://{{host}}:{{ports[http][0]}}/";
|
|
checkKoUrl("aaa" + urlWithoutScheme);
|
|
checkKoUrl("cap" + urlWithoutScheme);
|
|
checkKoUrl("cid" + urlWithoutScheme);
|
|
checkKoUrl("dav" + urlWithoutScheme);
|
|
checkKoUrl("dict" + urlWithoutScheme);
|
|
checkKoUrl("dns" + urlWithoutScheme);
|
|
checkKoUrl("geo" + urlWithoutScheme);
|
|
checkKoUrl("im" + urlWithoutScheme);
|
|
checkKoUrl("imap" + urlWithoutScheme);
|
|
checkKoUrl("ipp" + urlWithoutScheme);
|
|
checkKoUrl("ldap" + urlWithoutScheme);
|
|
checkKoUrl("mailto" + urlWithoutScheme);
|
|
checkKoUrl("nfs" + urlWithoutScheme);
|
|
checkKoUrl("pop" + urlWithoutScheme);
|
|
checkKoUrl("rtsp" + urlWithoutScheme);
|
|
checkKoUrl("snmp" + urlWithoutScheme);
|
|
|
|
done();
|