blob: 6ad1017bcbce5c346e1515efae66ab54249dab6c [file] [log] [blame]
<html>
<head>
<script type="text/javascript">
function load() {
var xhr = new XMLHttpRequest();
xhr.onload = function() {
top.document.getElementById("result").innerHTML="SUCCESS";
if (top.testRunner)
top.testRunner.notifyDone();
}
xhr.open("GET", "window-early-properties-xhr-frame.html");
xhr.send(false);
}
</script>
</head>
<body onload="load();">
</body>
</html>