diff options
Diffstat (limited to 'browser/base/content/test/popups/popup_blocker.html')
-rw-r--r-- | browser/base/content/test/popups/popup_blocker.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/browser/base/content/test/popups/popup_blocker.html b/browser/base/content/test/popups/popup_blocker.html new file mode 100644 index 000000000..6e2b7db15 --- /dev/null +++ b/browser/base/content/test/popups/popup_blocker.html @@ -0,0 +1,13 @@ +<!doctype html> +<html> + <head> + <meta charset="UTF-8"> + <title>Page creating two popups</title> + </head> + <body> + <script type="text/javascript"> + window.open("data:text/plain;charset=utf-8,a", "a"); + window.open("data:text/plain;charset=utf-8,b", "b"); + </script> + </body> +</html> |