blob: 4c9fc6dd52e16f04a70bd5b4a030dc55d3803a5e [file] [log] [blame]
<script>
var request = new XMLHttpRequest();
request.onreadystatechange = function () {
if (this.readyState === 4){
alert("Verifying authentication fails from another domain: " + this.responseText);
if (window.testRunner)
testRunner.notifyDone();
}
};
request.open('GET', 'http://127.0.0.1:8000/security/resources/cors-basic-auth.php', true);
request.send();
</script>