Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / android / popup_test.html
blob544a162926164feef22d5ecefcd993e7e12614b9
1 <html>
2 <head>
3 <title>Popup test page</title>
4 <script type="text/javascript">
5 function spawnWindows() {
6 window.open('data:text/html,<html><head><title>Popup #1</title></head><body /></html>');
7 window.open('data:text/html,<html><head><title>Popup #2</title></head><body /></html>');
8 window.open('data:text/html,<html><head><title>Popup #3</title></head><body /></html>');
10 </script>
11 </head>
12 <body onload="spawnWindows()">
13 Spawning three popup windows...
14 </body>
15 </html>