OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <body> | 2 <body> |
3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 <script> | 4 <script> |
5 jsTestIsAsync = true; | 5 jsTestIsAsync = true; |
6 description("MessagePorts (and their execution contexts) should be collected by
GC once close() has been called on them"); | 6 description("MessagePorts (and their execution contexts) should be collected by
GC once close() has been called on them"); |
7 window.onmessage = function(evt) { | 7 window.onmessage = function(evt) { |
8 iframeDocGC = internals.observeGC(document.querySelector('iframe').contentDo
cument); | 8 iframeDocGC = internals.observeGC(document.querySelector('iframe').contentDo
cument); |
9 document.querySelector('iframe').remove(); | 9 document.querySelector('iframe').remove(); |
10 gc(); | 10 gc(); |
11 gc(); | |
12 shouldBeTrue("iframeDocGC.wasCollected"); | 11 shouldBeTrue("iframeDocGC.wasCollected"); |
13 finishJSTest(); | 12 finishJSTest(); |
14 } | 13 } |
15 </script> | 14 </script> |
16 <iframe src="resources/message-port-gc-closed-iframe.html"></iframe> | 15 <iframe src="resources/message-port-gc-closed-iframe.html"></iframe> |
17 </body> | 16 </body> |
OLD | NEW |