blob: d34f53e1e1a4c4498259fc9d8219f0a261ea8ff3 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
var xhr = new XMLHttpRequest();
xhr.onload = function() {
console.log('xhr.status = ' + xhr.status);
};
xhr.open("GET", "unauthorised.pl");
xhr.send();
</script>
</head>
</html>