blob: 61c02ed5428cc5e83b0ac666ca6b44a4a6ec638a [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Tests CORS with Access-Control-Allow-Origin header</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">
test(function() {
const xhr = new XMLHttpRequest;
xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/access-control-basic-allow.py", false);
xhr.send();
assert_equals(xhr.responseText, "PASS: Cross-domain access allowed.");
}, "Allow basic");
</script>
</body>
</html>