| 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>
|
|
|