mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|