910e62b5创建于 1月15日历史提交
PASS if no timeout.
<iframe id="i"></iframe>
<script>
if (window.testRunner) {
  testRunner.dumpAsText();
  testRunner.waitUntilDone();
}

i.contentDocument.open();
setTimeout(function() {
  i.remove();
  if (window.testRunner)
      testRunner.notifyDone();
}, 0);
</script>