remove-iframe-from-timeout-callback.html 282 B

123456789101112
  1. <script src="../include.js"></script>
  2. <div id="foo">
  3. <iframe></iframe>
  4. <script>
  5. setTimeout(function () {
  6. foo.remove();
  7. // Pass (didn't crash)
  8. internals.signalTextTestIsDone();
  9. }, 0);
  10. </script>
  11. </div>
  12. <iframe></iframe>