blob: 8e2d958059286d466d209e847222b40d26d25e32 (
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("popup_blocker_a.html", "a");
window.open("popup_blocker_b.html", "b");
</script>
</body>
</html>
|