mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-02 07:30:08 +00:00
16 lines
304 B
HTML
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>
|