mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
322 B
HTML
19 lines
322 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script>
|
||
|
|
||
|
var name = location.search.substring(1);
|
||
|
addEventListener('load', function() {
|
||
|
setTimeout(function() {
|
||
|
alert(name + ':ready');
|
||
|
}, 0);
|
||
|
});
|
||
|
|
||
|
addEventListener('mozvisibilitychange', function() {
|
||
|
alert(name + ':' + (document.mozHidden ? 'hidden' : 'visible'));
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|