tenfourfox/webapprt/test/chrome/window-open-blank.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
307 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Window Open Blank Test App</title>
<meta charset="utf-8">
<script>
function onLoad() {
window.open("sample.html", "_blank");
}
</script>
</head>
<body onload="onLoad()">
<h1>Window Open Blank Test App</h1>
</body>
</html>