blob: 544a162926164feef22d5ecefcd993e7e12614b9 [file] [log] [blame]
<html>
<head>
<title>Popup test page</title>
<script type="text/javascript">
function spawnWindows() {
window.open('data:text/html,<html><head><title>Popup #1</title></head><body /></html>');
window.open('data:text/html,<html><head><title>Popup #2</title></head><body /></html>');
window.open('data:text/html,<html><head><title>Popup #3</title></head><body /></html>');
}
</script>
</head>
<body onload="spawnWindows()">
Spawning three popup windows...
</body>
</html>