summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/animation/test/browser_animation_current-time-scrubber-rtl.js
blob: 1da1c56e1099436b4dcd05a93c3602db24550a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/* import-globals-from current-time-scrubber_head.js */

// Test for CurrentTimeScrubber on RTL environment.

add_task(async function () {
  Services.scriptloader.loadSubScript(
    CHROME_URL_ROOT + "current-time-scrubber_head.js",
    this
  );
  await pushPref("intl.l10n.pseudo", "bidi");
  // eslint-disable-next-line no-undef
  await testCurrentTimeScrubber(true);
});