mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-01-23 06:16:35 +00:00
67 lines
2.0 KiB
JavaScript
67 lines
2.0 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
// Check that when the viewport is resized, the computed-view refreshes.
|
|
|
|
const TEST_URI = "data:text/html;charset=utf-8,<html><style>" +
|
|
"div {" +
|
|
" width: 500px;" +
|
|
" height: 10px;" +
|
|
" background: purple;" +
|
|
"} " +
|
|
"@media screen and (max-width: 200px) {" +
|
|
" div { " +
|
|
" width: 100px;" +
|
|
" }" +
|
|
"};" +
|
|
"</style><div></div></html>";
|
|
|
|
add_task(function*() {
|
|
yield addTab(TEST_URI);
|
|
|
|
info("Open the responsive design mode and set its size to 500x500 to start");
|
|
let {rdm} = yield openRDM();
|
|
rdm.setSize(500, 500);
|
|
|
|
info("Open the inspector, computed-view and select the test node");
|
|
let {inspector, view} = yield openComputedView();
|
|
yield selectNode("div", inspector);
|
|
|
|
info("Try shrinking the viewport and checking the applied styles");
|
|
yield testShrink(view, inspector, rdm);
|
|
|
|
info("Try growing the viewport and checking the applied styles");
|
|
yield testGrow(view, inspector, rdm);
|
|
|
|
gBrowser.removeCurrentTab();
|
|
});
|
|
|
|
function* testShrink(computedView, inspector, rdm) {
|
|
is(computedWidth(computedView), "500px", "Should show 500px initially.");
|
|
|
|
let onRefresh = inspector.once("computed-view-refreshed");
|
|
rdm.setSize(100, 100);
|
|
yield onRefresh;
|
|
|
|
is(computedWidth(computedView), "100px", "Should be 100px after shrinking.");
|
|
}
|
|
|
|
function* testGrow(computedView, inspector, rdm) {
|
|
let onRefresh = inspector.once("computed-view-refreshed");
|
|
rdm.setSize(500, 500);
|
|
yield onRefresh;
|
|
|
|
is(computedWidth(computedView), "500px", "Should be 500px after growing.");
|
|
}
|
|
|
|
function computedWidth(computedView) {
|
|
for (let prop of computedView.propertyViews) {
|
|
if (prop.name === "width") {
|
|
return prop.valueNode.textContent;
|
|
}
|
|
}
|
|
return null;
|
|
}
|