chromium/chrome/test/data/popup_blocker/popup-many-10.html

<html>
<head>
<title>Popup created using window.open</title>
<script>
function popup(name) {
  window.open("popup-success.html", name,
              "menubar=1, resizable=1, width=350, height=250");
}

function test() {
  for (i = 0; i < 10; i++) {
    popup('window' + i);
  }
}
</script>
</head>
<body onload="test()">
pop-up test page
</body>
</html>