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

16 lines
304 B
HTML

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