mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
10 lines
313 B
JavaScript
10 lines
313 B
JavaScript
add_task(function* () {
|
|
let tab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, "about:rights");
|
|
|
|
yield ContentTask.spawn(tab.linkedBrowser, null, function* () {
|
|
ok(content.document.getElementById("your-rights"), "about:rights content loaded");
|
|
});
|
|
|
|
yield BrowserTestUtils.removeTab(tab);
|
|
});
|