mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02: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);
|
|
});
|