mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
9 lines
320 B
JavaScript
9 lines
320 B
JavaScript
add_task(function* () {
|
|
let tab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, "about:rights");
|
|
|
|
yield ContentTask.spawn(tab.linkedBrowser, null, function* () {
|
|
Assert.ok(content.document.getElementById("your-rights"), "about:rights content loaded");
|
|
});
|
|
|
|
yield BrowserTestUtils.removeTab(tab);
|
|
});
|