Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/webapprt/test/chrome/window-open.html

16 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>