mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d5552497ce
--HG-- extra : rebase_source : 916b8181478cda654b8936f7bfab79e72f7c8422
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>
|