mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-13 15:34:01 +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>
|