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