Bug 1714234 - Enable the dimension checks for visible-page screenshots in browser_screenshots_dimensions.js. r=sfoster

Differential Revision: https://phabricator.services.mozilla.com/D127573
This commit is contained in:
Niklas Baumgardner 2021-10-07 16:58:02 +00:00
Родитель e438bb47ac
Коммит 9dd0c68d5c
1 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -58,6 +58,7 @@ add_task(async function test_visiblePageScreenshot() {
url: TEST_GREEN_PAGE,
},
async browser => {
const DEVICE_PIXEL_RATIO = window.devicePixelRatio;
let helper = new ScreenshotsHelper(browser);
let contentInfo = await helper.getContentDimensions();
ok(contentInfo, "Got dimensions back from the content");
@ -93,17 +94,16 @@ add_task(async function test_visiblePageScreenshot() {
info("result: " + JSON.stringify(result, null, 2));
info("contentInfo: " + JSON.stringify(contentInfo, null, 2));
// TODO: (Bug 1714234) Bug results from visible-page screenshots seem to be variable across platforms/environments
// is(
// result.width,
// contentInfo.documentWidth,
// "Got expected screenshot width"
// );
// is(
// result.height,
// contentInfo.clientHeight,
// "Got expected screenshot height"
// );
is(
result.width,
contentInfo.documentWidth * DEVICE_PIXEL_RATIO,
"Got expected screenshot width"
);
is(
result.height,
contentInfo.clientHeight * DEVICE_PIXEL_RATIO,
"Got expected screenshot height"
);
}
);
});