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