blob: f9468fd763be1196e0cf2abe314ca5cee37236c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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 */
add_task(async function() {
Services.scriptloader.loadSubScript(
CHROME_URL_ROOT + "current-time-scrubber_head.js",
this
);
await testCurrentTimeScrubber();
});
|