tor-browser

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

test_bug422132.html (816B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=422132
      5 -->
      6 <head>
      7  <title>Test for Bug 422132</title>
      8  <script src="/tests/SimpleTest/SimpleTest.js"></script>
      9  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
     10 </head>
     11 <body>
     12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=422132">Mozilla Bug 422132</a>
     13 <script>
     14 SimpleTest.waitForExplicitFinish();
     15 SpecialPowers.pushPrefEnv(
     16  {
     17    set: [["general.smoothScroll", false],
     18          ["mousewheel.min_line_scroll_amount", 1],
     19          ["mousewheel.system_scroll_override.enabled", false],
     20          ["mousewheel.transaction.timeout", 100000],
     21          ["test.events.async.enabled", true]]
     22  },
     23  () =>
     24  {
     25    window.open("file_bug422132.html", "_blank");
     26  }
     27 );
     28 </script>
     29 </body>
     30 </html>