Chromium Code Reviews| Index: android_webview/test/data/device_files/xhr_access.html |
| diff --git a/android_webview/test/data/device_files/xhr_access.html b/android_webview/test/data/device_files/xhr_access.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..18ee9230ad80562b6cc0867264f36a57fc470255 |
| --- /dev/null |
| +++ b/android_webview/test/data/device_files/xhr_access.html |
| @@ -0,0 +1,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> |