tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

navigate-from-initial-about-blank-gc.html (542B)


      1 <!doctype html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="/resources/testharnessreport.js"></script>
      4 <script src="/common/gc.js"></script>
      5 
      6 <iframe id="i" src="/common/blank.html"></iframe>
      7 
      8 <!--
      9  Regression test for https://bugs.chromium.org/p/chromium/issues/detail?id=1289864.
     10 -->
     11 
     12 <script>
     13 promise_test(t => {
     14  i.contentWindow.navigation.navigate("/common/blank.html?1");
     15 
     16  return garbageCollect();
     17 }, `navigate() from <iframe> with src="" but still on initial about:blank doesn't cause a crash on GC`);
     18 </script>