- add sources.
[platform/framework/web/crosswalk.git] / src / android_webview / test / data / device_files / xhr_access.html
1 <html>
2   <head>
3     <script>
4       var xhr = new XMLHttpRequest();
5       xhr.open("GET", "hello_world.html", false);
6       try {
7         xhr.send();
8         document.write(xhr.responseText);
9       } catch (e) {
10         document.title = "Exception";
11       }
12     </script>
13   </head>
14   <body>
15   </body>
16 </html>