Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /xhr/access-control-basic-allow-star.any.html - WPT Dashboard Interop Dashboard
- /xhr/access-control-basic-allow-star.any.worker.html - WPT Dashboard Interop Dashboard
// META: title=Tests "*" setting for Access-Control-Allow-Origin header
// META: script=/common/get-host-info.sub.js
const xhr = new XMLHttpRequest;
test(function(test) {
xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/access-control-basic-allow-star.py", false);
xhr.send();
assert_equals(xhr.responseText, "PASS: Cross-domain access allowed.");
}, "Allow star");