tor-browser

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

slow-cycle.html (363B)


      1 <!DOCTYPE html>
      2 <title>Cyclic graph with slow imports</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script type="module">
      6 import { loaded } from "./slow-module-graph-a.js";
      7 
      8 test(() => {
      9  assert_true(loaded);
     10 }, "module graph with cycles load even if part of the graph loads slow");
     11 </script>