Index: chrome/test/data/android/device_files/webview/xhr_access.html |
diff --git a/chrome/test/data/android/device_files/webview/xhr_access.html b/chrome/test/data/android/device_files/webview/xhr_access.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..18ee9230ad80562b6cc0867264f36a57fc470255 |
--- /dev/null |
+++ b/chrome/test/data/android/device_files/webview/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> |