| Index: LayoutTests/media/track/track-dispose.html
|
| diff --git a/LayoutTests/media/track/track-dispose.html b/LayoutTests/media/track/track-dispose.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e19e53906c605dd8d688633d423f20362ca1ccbb
|
| --- /dev/null
|
| +++ b/LayoutTests/media/track/track-dispose.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| +if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + testRunner.waitUntilDone();
|
| +}
|
| +window.onmessage = function() {
|
| + setTimeout(function() {
|
| + var iframe = document.querySelector('iframe');
|
| + iframe.src = iframe.src;
|
| + gc();
|
| + setTimeout(function() {
|
| + if (window.testRunner)
|
| + testRunner.notifyDone();
|
| + }, 150);
|
| + }, 0);
|
| +}
|
| +</script>
|
| +<p>PASS if no crash.</p>
|
| +<iframe src="../resources/track-dispose-inner.html"></iframe>
|
|
|