tor-browser

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

browser_animation_current-time-scrubber-rtl.js (499B)


      1 /* Any copyright is dedicated to the Public Domain.
      2   http://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 "use strict";
      5 
      6 /* import-globals-from current-time-scrubber_head.js */
      7 
      8 // Test for CurrentTimeScrubber on RTL environment.
      9 
     10 add_task(async function () {
     11  Services.scriptloader.loadSubScript(
     12    CHROME_URL_ROOT + "current-time-scrubber_head.js",
     13    this
     14  );
     15  await pushPref("intl.l10n.pseudo", "bidi");
     16  // eslint-disable-next-line no-undef
     17  await testCurrentTimeScrubber(true);
     18 });