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