Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Window / resources / window-early-properties-xhr-frame.html
blob6ad1017bcbce5c346e1515efae66ab54249dab6c
1 <html>
2 <head>
3 <script type="text/javascript">
4 function load() {
5 var xhr = new XMLHttpRequest();
6 xhr.onload = function() {
7 top.document.getElementById("result").innerHTML="SUCCESS";
8 if (top.testRunner)
9 top.testRunner.notifyDone();
11 xhr.open("GET", "window-early-properties-xhr-frame.html");
12 xhr.send(false);
14 </script>
15 </head>
16 <body onload="load();">
17 </body>
18 </html>