mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision e03a9b1341ae9bdb1e4fa03765257b84d26fe2f1
This commit is contained in:
parent
7d05c76d18
commit
20a833eb75
5167 changed files with 4696 additions and 297370 deletions
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<body>
|
||||
<meta charset="utf-8">
|
||||
<title>Synchronous XMLHttpRequest Feature Policy Test</title>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=/feature-policy/resources/featurepolicy.js></script>
|
||||
<script src=util/utils.js></script>
|
||||
<script>
|
||||
'use strict';
|
||||
run_all_fp_tests_allow_all(
|
||||
'http://{{domains[www]}}:{{ports[http][0]}}',
|
||||
'sync-xhr',
|
||||
'InvalidAccessError: Failed to execute \'open\' on \'XMLHttpRequest\': ' +
|
||||
'Synchronous requests are disabled by Feature Policy.',
|
||||
() => {
|
||||
return new Promise((resolve, reject) => {
|
||||
try {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("GET", "data:,", false);
|
||||
xhr.send();
|
||||
resolve();
|
||||
} catch(e) {
|
||||
reject(e);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue