blob: d0f9b466109c17bcef2edfc78cbc09e477d5cdba [file] [log] [blame]
tsepez@chromium.org43056c52012-09-13 23:12:03 +00001<!DOCTYPE html>
2<html>
3<body>
ap@apple.com2b115582015-01-05 00:04:40 +00004<!-- 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.org43056c52012-09-13 23:12:03 +00008<div>
9This test passes if it does not trip an assert in debug builds.
10It ensures a readystatechange event can't get dispatched until after a plugin is fully removed.
11</div>
tsepez@chromium.org43056c52012-09-13 23:12:03 +000012<script>
darin@apple.com15fd10d2017-07-24 16:06:50 +000013if (window.testRunner) {
tsepez@chromium.org43056c52012-09-13 23:12:03 +000014 testRunner.dumpAsText();
darin@apple.com15fd10d2017-07-24 16:06:50 +000015 testRunner.waitUntilDone();
16}
tsepez@chromium.org43056c52012-09-13 23:12:03 +000017
tsepez@chromium.org43056c52012-09-13 23:12:03 +000018document.addEventListener('readystatechange', function() {
ap@apple.com2b115582015-01-05 00:04:40 +000019 if (document.readyState == "complete") {
tsepez@chromium.org43056c52012-09-13 23:12:03 +000020 try {
21 document.body.appendChild(document.getElementById('viewer'));
22 }
23 catch (e) {
24 alert('PASS: element could not be re-appended');
darin@apple.com15fd10d2017-07-24 16:06:50 +000025 }
26 if (window.testRunner)
27 testRunner.notifyDone();
tsepez@chromium.org43056c52012-09-13 23:12:03 +000028 }
tsepez@chromium.org43056c52012-09-13 23:12:03 +000029});
30
31window.addEventListener('DOMContentLoaded', function() {
darin@apple.com15fd10d2017-07-24 16:06:50 +000032 // 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.org43056c52012-09-13 23:12:03 +000039 document.body.removeChild(document.getElementById('viewer'));
40});
41</script>
42</body>
43</html>