mirror of
https://github.com/servo/servo.git
synced 2025-06-30 20:13:39 +01:00
22 lines
656 B
HTML
22 lines
656 B
HTML
<!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>
|