| Index: webkit/data/plugins/hidden_plugin_iframe.html
|
| ===================================================================
|
| --- webkit/data/plugins/hidden_plugin_iframe.html (revision 0)
|
| +++ webkit/data/plugins/hidden_plugin_iframe.html (revision 0)
|
| @@ -0,0 +1,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'>
|
|
|