mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 7f2f85a88f434798e9d643427b34b05fab8278c6
This commit is contained in:
parent
6b1a08c051
commit
73bc5cf1b8
180 changed files with 5807 additions and 169 deletions
|
@ -0,0 +1,33 @@
|
|||
if (this.document === undefined) {
|
||||
importScripts("/resources/testharness.js");
|
||||
importScripts("../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(test, new 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();
|
Loading…
Add table
Add a link
Reference in a new issue