summaryrefslogtreecommitdiffstats
path: root/android_webview/test/data/device_files/xhr_access.html
blob: 18ee9230ad80562b6cc0867264f36a57fc470255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
  <head>
    <script>
      var xhr = new XMLHttpRequest();
      xhr.open("GET", "hello_world.html", false);
      try {
        xhr.send();
        document.write(xhr.responseText);
      } catch (e) {
        document.title = "Exception";
      }
    </script>
  </head>
  <body>
  </body>
</html>