blob: 00b4557f70d458953081637b571a949247a67b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const TEST_PATH = getRootDirectory(gTestPath).replace(
"chrome://mochitests/content",
"http://example.com"
);
async function testRefresh(url) {
// Open an article in a browser tab
await BrowserTestUtils.withNewTab(url, async function (browser) {
let pageShownPromise = BrowserTestUtils.waitForContentEvent(
browser,
"AboutReaderContentReady"
);
let readerButton = document.getElementById("reader-mode-button");
let refreshButton = document.getElementById("reload-button");
// Enter Reader Mode
readerButton.click();
await pageShownPromise;
// Refresh the page
pageShownPromise = BrowserTestUtils.waitForContentEvent(
browser,
"AboutReaderContentReady"
);
refreshButton.click();
await pageShownPromise;
await SpecialPowers.spawn(browser, [], () => {
ok(
!content.document.documentElement.hasAttribute("data-is-error"),
"The data-is-error attribute is present when Reader Mode failed to load an article."
);
});
});
}
add_task(async function () {
// Testing a non-text/plain document
await testRefresh(TEST_PATH + "readerModeArticle.html");
// Testing a test/plain document
await testRefresh(TEST_PATH + "readerModeArticleTextPlain.txt");
});
|