| <html> | |
| <head> | |
| <title>Test page for popups</title> | |
| <script> | |
| function openPopup() { | |
| window.open('data:text/html;charset=utf8,This is a popup', 'popup', 'height=200,width=150'); | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| This page opens a popup when openPopup() is called. | |
| </body> | |
| </html> |