mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Update web-platform-tests to revision fab2c513bffb2bd19600d23b495264d123df092f
This commit is contained in:
parent
c226bf85a9
commit
ebddcc2d7f
441 changed files with 3689 additions and 1521 deletions
|
@ -34,8 +34,10 @@ function cookies(desc, credentials1, credentials2 ,cookies) {
|
|||
}
|
||||
//clean cookies
|
||||
return fetch(url + urlCleanParameters, {"credentials": "include"});
|
||||
}).catch(function() {
|
||||
fetch(url + urlCleanParameters, {"credentials": "include"});
|
||||
}).catch(function(e) {
|
||||
return fetch(url + urlCleanParameters, {"credentials": "include"}).then(function() {
|
||||
return Promise.reject(e);
|
||||
});
|
||||
});
|
||||
}, desc);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue