mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-19 18:38:36 +00:00
17 lines
324 B
HTML
17 lines
324 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Window Open Test App</title>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
var openedWindow;
|
|
function onLoad() {
|
|
openedWindow = window.open("sample.html");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="onLoad()">
|
|
<h1>Window Open Test App</h1>
|
|
</body>
|
|
</html>
|