tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <body> |
ap@apple.com | 2b11558 | 2015-01-05 00:04:40 +0000 | [diff] [blame] | 4 | <!-- FIXME: Don't use Flash, it may not be installed on the machine where this test is run. |
| 5 | It is not trivial to switch from Flash to TestNetscapePlugin, because we need to be loading |
| 6 | a resource in this test. --> |
| 7 | <embed id="viewer" src="resources/simple_blank.swf"></embed> |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 8 | <div> |
| 9 | This test passes if it does not trip an assert in debug builds. |
| 10 | It ensures a readystatechange event can't get dispatched until after a plugin is fully removed. |
| 11 | </div> |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 12 | <script> |
darin@apple.com | 15fd10d | 2017-07-24 16:06:50 +0000 | [diff] [blame] | 13 | if (window.testRunner) { |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 14 | testRunner.dumpAsText(); |
darin@apple.com | 15fd10d | 2017-07-24 16:06:50 +0000 | [diff] [blame] | 15 | testRunner.waitUntilDone(); |
| 16 | } |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 17 | |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 18 | document.addEventListener('readystatechange', function() { |
ap@apple.com | 2b11558 | 2015-01-05 00:04:40 +0000 | [diff] [blame] | 19 | if (document.readyState == "complete") { |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 20 | try { |
| 21 | document.body.appendChild(document.getElementById('viewer')); |
| 22 | } |
| 23 | catch (e) { |
| 24 | alert('PASS: element could not be re-appended'); |
darin@apple.com | 15fd10d | 2017-07-24 16:06:50 +0000 | [diff] [blame] | 25 | } |
| 26 | if (window.testRunner) |
| 27 | testRunner.notifyDone(); |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 28 | } |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 29 | }); |
| 30 | |
| 31 | window.addEventListener('DOMContentLoaded', function() { |
darin@apple.com | 15fd10d | 2017-07-24 16:06:50 +0000 | [diff] [blame] | 32 | // This test relies on removing the embed element while it is actively loading. |
| 33 | // There's no observable event that creates the exact right timing for that. |
| 34 | // As of this writing, after DOMContentLoaded, then next layout is the right time. |
| 35 | // Here we evaluate document.body.offsetLeft to trigger that layout. But really, |
| 36 | // this is a race condition, nothing guarantees that the load starts at that moment, |
| 37 | // and we might have to revise this test again in the future. |
| 38 | document.body.offsetLeft; |
tsepez@chromium.org | 43056c5 | 2012-09-13 23:12:03 +0000 | [diff] [blame] | 39 | document.body.removeChild(document.getElementById('viewer')); |
| 40 | }); |
| 41 | </script> |
| 42 | </body> |
| 43 | </html> |