blob: ad0a994261bafd7291daa823495fe6e4aab363e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script>
var gotVisible = false;
function windowHidden() {
if (!gotVisible)
parent.document.getElementById('result').innerHTML = 'DONE';
}
function windowVisible() {
gotVisible = true;
parent.document.getElementById('result').innerHTML = 'FAIL';
}
</script>
<embed style="visibility:hidden" id='1' type='application/vnd.npapi-test' src='foo' name='hidden_plugin'>
|