mirror of
https://github.com/servo/servo.git
synced 2025-07-02 13:03:43 +01:00
Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326
This commit is contained in:
parent
462c272380
commit
1f531f66ea
5377 changed files with 174916 additions and 84369 deletions
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Recursively repeated CORS requests with failed preflights should never result in unexpected behavior</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/common/get-host-info.sub.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript">
|
||||
let requestCount = 0;
|
||||
const requestMax = 10;
|
||||
|
||||
async_test((test) => {
|
||||
function preflightRequest() {
|
||||
const xhr = new XMLHttpRequest;
|
||||
|
||||
xhr.onload = test.unreached_func("Request succeeded unexpectedly.");
|
||||
|
||||
xhr.onerror = test.step_func(() => {
|
||||
assert_equals(xhr.status, 0);
|
||||
if (++requestCount >= requestMax) {
|
||||
test.done();
|
||||
return;
|
||||
}
|
||||
preflightRequest();
|
||||
});
|
||||
|
||||
xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN +
|
||||
"/XMLHttpRequest/resources/access-control-basic-denied.py");
|
||||
xhr.send();
|
||||
}
|
||||
|
||||
preflightRequest();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue