tor-browser

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

121.html (509B)


      1 <!DOCTYPE html>
      2 <html><head>
      3  <title>scheduler: altering the type attribute </title>
      4  <script src="/resources/testharness.js"></script>
      5  <script src="/resources/testharnessreport.js"></script>
      6 </head>
      7 <div id="log"></div>
      8 <script>
      9  var t = async_test();
     10 </script>
     11 <script id="test" type="text/plain">t.step(function() {assert_unreached()}</script>
     12 <script>
     13 t.step(function() {
     14  document.getElementById("test").removeAttribute("type");
     15  setTimeout(t.step_func(function() {t.done()}), 100);
     16 });
     17 </script>