Index: chrome/test/data/android/popup.html |
diff --git a/chrome/test/data/android/popup.html b/chrome/test/data/android/popup.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..35f559078278f0b00741629397f78420b9f29927 |
--- /dev/null |
+++ b/chrome/test/data/android/popup.html |
@@ -0,0 +1,17 @@ |
+<html> |
+ |
+<head> |
+<title>Test page for popups</title> |
+ |
+<script> |
+function openPopup() { |
+window.open('data:text/html;charset=utf8,This is a popup', 'popup', 'height=200,width=150'); |
+} |
+</script> |
+</head> |
+ |
+<body onload="openPopup()"> |
+This page opens a popup when it is loaded. |
+</body> |
+ |
+</html> |