forked from mirrors/gecko-dev
This is generally pretty straightforward, and rewrites nearly all calls. It skips the ones that it can detect using frame script globals like `sendAsyncMessage`, though. Differential Revision: https://phabricator.services.mozilla.com/D53740 --HG-- extra : moz-landing-system : lando
74 lines
2.4 KiB
JavaScript
74 lines
2.4 KiB
JavaScript
/* 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"
|
|
);
|
|
|
|
add_task(async function test_loading_withHash() {
|
|
await BrowserTestUtils.withNewTab(
|
|
TEST_PATH + "readerModeArticle.html#foo",
|
|
async function(browser) {
|
|
let pageShownPromise = BrowserTestUtils.waitForContentEvent(
|
|
browser,
|
|
"AboutReaderContentReady"
|
|
);
|
|
let readerButton = document.getElementById("reader-mode-button");
|
|
readerButton.click();
|
|
await pageShownPromise;
|
|
await SpecialPowers.spawn(browser, [], async function() {
|
|
let foo = content.document.getElementById("foo");
|
|
ok(foo, "foo element should be in document");
|
|
let { scrollTop } = content.document.documentElement;
|
|
let { offsetTop } = foo;
|
|
Assert.lessOrEqual(
|
|
Math.abs(scrollTop - offsetTop),
|
|
1,
|
|
`scrollTop (${scrollTop}) should be within 1 CSS pixel of offsetTop (${offsetTop})`
|
|
);
|
|
});
|
|
}
|
|
);
|
|
});
|
|
|
|
add_task(async function test_loading_withoutHash() {
|
|
await BrowserTestUtils.withNewTab(
|
|
TEST_PATH + "readerModeArticle.html",
|
|
async function(browser) {
|
|
let pageShownPromise = BrowserTestUtils.waitForContentEvent(
|
|
browser,
|
|
"AboutReaderContentReady"
|
|
);
|
|
let readerButton = document.getElementById("reader-mode-button");
|
|
readerButton.click();
|
|
await pageShownPromise;
|
|
await SpecialPowers.spawn(gBrowser.selectedBrowser, [], async () => {
|
|
Assert.equal(
|
|
content.document.documentElement.scrollTop,
|
|
0,
|
|
"scrollTop should be 0"
|
|
);
|
|
});
|
|
await BrowserTestUtils.synthesizeMouseAtCenter(
|
|
"#foo-anchor",
|
|
{},
|
|
browser
|
|
);
|
|
await SpecialPowers.spawn(browser, [], async function() {
|
|
let foo = content.document.getElementById("foo");
|
|
ok(foo, "foo element should be in document");
|
|
let { scrollTop } = content.document.documentElement;
|
|
let { offsetTop } = foo;
|
|
Assert.lessOrEqual(
|
|
Math.abs(scrollTop - offsetTop),
|
|
1,
|
|
`scrollTop (${scrollTop}) should be within 1 CSS pixel of offsetTop (${offsetTop})`
|
|
);
|
|
});
|
|
}
|
|
);
|
|
});
|