blob: 7f4fd33b9ff4a3fef348ef470ef3f32074a2b68f [file] [log] [blame]
<script>
function loaded()
{
var request = new XMLHttpRequest();
request.open('GET', 'http://www.iana.org/domains/example/', true);
request.send(null);
}
</script>
<body onload="loaded();">
We will do some XHR'ing now!
</body>