1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

android_webview / test / data / xhr_access.html [blame]

<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>