Update web-platform-tests to revision 53f3408ffe1fd0e56a37aff4aaf1fa8441c41d6d

This commit is contained in:
Ms2ger 2016-07-12 09:30:50 +02:00
parent 9b01a4cc97
commit 0edf0ececb
59 changed files with 2247 additions and 1071 deletions

View file

@ -66,16 +66,16 @@
test(function() {
var url = "http://url.test:1234/path/subpath?query=true";
expectedDefault["url"] = url;
url += "#fragment";
expectedDefault["url"] = url;
var requestToCheck = new Request(url);
checkRequest(requestToCheck, expectedDefault);
}, "Check request values when initialized from url string");
test(function() {
var url = "http://url.test:1234/path/subpath?query=true";
expectedInitialized["url"] = url;
url += "#fragment";
expectedInitialized["url"] = url;
var requestToCheck = new Request(url , initValuesDict);
checkRequest(requestToCheck, expectedInitialized);
}, "Check request values when initialized from url and init values");