mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
247 B
HTML
17 lines
247 B
HTML
|
<html>
|
||
|
<body onhashchange='hashchange(event)' onload='load()'>
|
||
|
|
||
|
<script>
|
||
|
function hashchange(e) {
|
||
|
(opener || parent).childHashchange(e);
|
||
|
}
|
||
|
|
||
|
function load() {
|
||
|
(opener || parent).childLoad();
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
Just a shell of a page.
|
||
|
</body>
|
||
|
</html>
|