mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
Rename Toolkit's webextensions component directory to better reflect what it is.
This commit is contained in:
parent
6955450f7a
commit
d7d16e7fbb
242 changed files with 4 additions and 2 deletions
|
|
@ -1,64 +0,0 @@
|
|||
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* vim: set sts=2 sw=2 et tw=80: */
|
||||
"use strict";
|
||||
|
||||
let {Management} = Cu.import("resource://gre/modules/Extension.jsm", {});
|
||||
function getNextContext() {
|
||||
return new Promise(resolve => {
|
||||
Management.on("proxy-context-load", function listener(type, context) {
|
||||
Management.off("proxy-context-load", listener);
|
||||
resolve(context);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
add_task(function* test_storage_api_without_permissions() {
|
||||
let extension = ExtensionTestUtils.loadExtension({
|
||||
background() {
|
||||
// Force API initialization.
|
||||
void browser.storage;
|
||||
},
|
||||
|
||||
manifest: {
|
||||
permissions: [],
|
||||
},
|
||||
});
|
||||
|
||||
let contextPromise = getNextContext();
|
||||
yield extension.startup();
|
||||
|
||||
let context = yield contextPromise;
|
||||
|
||||
// Force API initialization.
|
||||
void context.apiObj;
|
||||
|
||||
ok(!("storage" in context.apiObj),
|
||||
"The storage API should not be initialized");
|
||||
|
||||
yield extension.unload();
|
||||
});
|
||||
|
||||
add_task(function* test_storage_api_with_permissions() {
|
||||
let extension = ExtensionTestUtils.loadExtension({
|
||||
background() {
|
||||
void browser.storage;
|
||||
},
|
||||
|
||||
manifest: {
|
||||
permissions: ["storage"],
|
||||
},
|
||||
});
|
||||
|
||||
let contextPromise = getNextContext();
|
||||
yield extension.startup();
|
||||
|
||||
let context = yield contextPromise;
|
||||
|
||||
// Force API initialization.
|
||||
void context.apiObj;
|
||||
|
||||
equal(typeof context.apiObj.storage, "object",
|
||||
"The storage API should be initialized");
|
||||
|
||||
yield extension.unload();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue