tenfourfox/webapprt/test/chrome/window-open-blank.html

16 lines
307 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>