summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/popups/popup_blocker.html
blob: 6e2b7db1553692ec139be247ee412b645bb163e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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>