mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
370 B
HTML
18 lines
370 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function Load() {
|
|
var URL = top.frames[0].document.forms[0].elements[0].value;
|
|
|
|
top.frames[1].document.location.href = URL;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form onsubmit="Load();return false;">
|
|
<input type="text" size="50">
|
|
<input type="submit" value="Load URL">
|
|
</form>
|
|
</body>
|
|
</html>
|