Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Unified Diff: chrome/test/data/android/popup_test.html

Issue 1229853006: [Document mode] Allow multiple popup windows to appear. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Uploading for realz Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/android/javatests_shell/src/org/chromium/chrome/browser/PopupTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/android/popup_test.html
diff --git a/chrome/test/data/android/popup_test.html b/chrome/test/data/android/popup_test.html
index 050638b10c97655db19e91915a88a4fa65735a57..544a162926164feef22d5ecefcd993e7e12614b9 100644
--- a/chrome/test/data/android/popup_test.html
+++ b/chrome/test/data/android/popup_test.html
@@ -1,13 +1,15 @@
<html>
<head>
+ <title>Popup test page</title>
<script type="text/javascript">
function spawnWindows() {
window.open('data:text/html,<html><head><title>Popup #1</title></head><body /></html>');
window.open('data:text/html,<html><head><title>Popup #2</title></head><body /></html>');
+ window.open('data:text/html,<html><head><title>Popup #3</title></head><body /></html>');
}
</script>
</head>
<body onload="spawnWindows()">
- Spawning two popup windows...
+ Spawning three popup windows...
</body>
</html>
« no previous file with comments | « chrome/android/javatests_shell/src/org/chromium/chrome/browser/PopupTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698