зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1523844 Part 4: Add a test that meta viewport page resizes correctly after reload. r=botond
Differential Revision: https://phabricator.services.mozilla.com/D41104 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
960bd36add
Коммит
d5e60384d2
|
@ -85,6 +85,7 @@ skip-if = os == "mac" # Bug 1569508
|
|||
fail-if = true # Bug 1547783
|
||||
[browser_user_agent_input.js]
|
||||
[browser_viewport_basics.js]
|
||||
[browser_viewport_resizing_after_reload.js]
|
||||
[browser_viewport_resizing_fixed_width.js]
|
||||
[browser_viewport_resizing_fixed_width_and_zoom.js]
|
||||
[browser_viewport_resizing_minimum_scale.js]
|
||||
|
|
|
@ -0,0 +1,101 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
"use strict";
|
||||
|
||||
// Test viewport resizing, with and without meta viewport support.
|
||||
|
||||
const TEST_URL =
|
||||
"data:text/html;charset=utf-8," +
|
||||
'<head><meta name="viewport" content="width=device-width"/></head>' +
|
||||
'<body style="margin:0px;min-width:600px">' +
|
||||
'<div style="width:100%;height:100px;background-color:black"></div>' +
|
||||
'<div style="width:100%;height:1100px;background-color:lightblue"></div>' +
|
||||
"</body>";
|
||||
|
||||
addRDMTask(TEST_URL, async function({ ui, manager }) {
|
||||
// Turn on the pref that allows meta viewport support.
|
||||
await SpecialPowers.pushPrefEnv({
|
||||
set: [["devtools.responsive.metaViewport.enabled", true]],
|
||||
});
|
||||
|
||||
const store = ui.toolWindow.store;
|
||||
|
||||
// Wait until the viewport has been added.
|
||||
await waitUntilState(store, state => state.viewports.length == 1);
|
||||
|
||||
info("--- Starting viewport test output ---");
|
||||
|
||||
// We're going to take a 300,600 viewport (before), reload it,
|
||||
// then resize it to 600,300 (after) and then resize it back.
|
||||
// At the before and after points, we'll measure zoom and the
|
||||
// layout viewport width and height.
|
||||
const expected = [
|
||||
{
|
||||
metaSupport: false,
|
||||
before: [1.0, 300, 600],
|
||||
after: [1.0, 600, 300],
|
||||
},
|
||||
{
|
||||
metaSupport: true,
|
||||
before: [0.5, 600, 1200],
|
||||
after: [1.0, 600, 300],
|
||||
},
|
||||
];
|
||||
|
||||
for (const e of expected) {
|
||||
const b = e.before;
|
||||
const a = e.after;
|
||||
|
||||
const message = "Meta Viewport " + (e.metaSupport ? "ON" : "OFF");
|
||||
|
||||
// Ensure meta viewport is set.
|
||||
info(message + " setting meta viewport support.");
|
||||
await setTouchAndMetaViewportSupport(ui, e.metaSupport);
|
||||
|
||||
// Get to the initial size and check values.
|
||||
await setViewportSize(ui, manager, 300, 600);
|
||||
await testViewportZoomWidthAndHeight(
|
||||
message + " before resize",
|
||||
ui,
|
||||
b[0],
|
||||
b[1],
|
||||
b[2]
|
||||
);
|
||||
|
||||
// Force a reload.
|
||||
const reload = waitForViewportLoad(ui);
|
||||
const browser = ui.getViewportBrowser();
|
||||
browser.reload();
|
||||
await reload;
|
||||
|
||||
// Check initial values again.
|
||||
await testViewportZoomWidthAndHeight(
|
||||
message + " after reload",
|
||||
ui,
|
||||
b[0],
|
||||
b[1],
|
||||
b[2]
|
||||
);
|
||||
|
||||
// Move to the smaller size.
|
||||
await setViewportSize(ui, manager, 600, 300);
|
||||
await testViewportZoomWidthAndHeight(
|
||||
message + " after resize",
|
||||
ui,
|
||||
a[0],
|
||||
a[1],
|
||||
a[2]
|
||||
);
|
||||
|
||||
// Go back to the initial size and check again.
|
||||
await setViewportSize(ui, manager, 300, 600);
|
||||
await testViewportZoomWidthAndHeight(
|
||||
message + " return to initial size",
|
||||
ui,
|
||||
b[0],
|
||||
b[1],
|
||||
b[2]
|
||||
);
|
||||
}
|
||||
});
|
Загрузка…
Ссылка в новой задаче