summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/popups/popup_blocker_10_popups.html
diff options
context:
space:
mode:
Diffstat (limited to 'browser/base/content/test/popups/popup_blocker_10_popups.html')
-rw-r--r--browser/base/content/test/popups/popup_blocker_10_popups.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/browser/base/content/test/popups/popup_blocker_10_popups.html b/browser/base/content/test/popups/popup_blocker_10_popups.html
new file mode 100644
index 0000000000..9dc288f472
--- /dev/null
+++ b/browser/base/content/test/popups/popup_blocker_10_popups.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <title>Page creating ten popups</title>
+ </head>
+ <body>
+ <script type="text/javascript">
+ for (let i = 0; i < 10; i++) {
+ window.open("https://example.com");
+ }
+ </script>
+ </body>
+</html>