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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Popup test page</title>
3 <script type="text/javascript"> 4 <script type="text/javascript">
4 function spawnWindows() { 5 function spawnWindows() {
5 window.open('data:text/html,<html><head><title>Popup #1</title></head><b ody /></html>'); 6 window.open('data:text/html,<html><head><title>Popup #1</title></head><b ody /></html>');
6 window.open('data:text/html,<html><head><title>Popup #2</title></head><b ody /></html>'); 7 window.open('data:text/html,<html><head><title>Popup #2</title></head><b ody /></html>');
8 window.open('data:text/html,<html><head><title>Popup #3</title></head><b ody /></html>');
7 } 9 }
8 </script> 10 </script>
9 </head> 11 </head>
10 <body onload="spawnWindows()"> 12 <body onload="spawnWindows()">
11 Spawning two popup windows... 13 Spawning three popup windows...
12 </body> 14 </body>
13 </html> 15 </html>
OLDNEW
« 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