Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test that the box model displays the right values for positions.
const TEST_URI = `
<style type='text/css'>
div {
position: absolute;
left: 0;
margin: 0;
padding: 0;
display: none;
height: 100px;
width: 100px;
border: 10px solid black;
}
</style>
<div>Test Node</div>
`;
// Expected values:
const res1 = [
{
selector: ".boxmodel-position.boxmodel-top > span",
value: "auto",
},
{
selector: ".boxmodel-position.boxmodel-right > span",
value: "auto",
},
{
selector: ".boxmodel-position.boxmodel-bottom > span",
value: "auto",
},
{
selector: ".boxmodel-position.boxmodel-left > span",
value: "0",
},
];
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
const { inspector, boxmodel } = await openLayoutView();
const node = await getNodeFront("div", inspector);
const children = await inspector.markup.walker.children(node);
const beforeElement = children.nodes[0];
await selectNode(beforeElement, inspector);
await testPositionValues(inspector, boxmodel);
});
function testPositionValues(inspector, boxmodel) {
info("Test that the position values of the box model are correct");
const doc = boxmodel.document;
for (let i = 0; i < res1.length; i++) {
const elt = doc.querySelector(res1[i].selector);
is(
elt.textContent,
res1[i].value,
res1[i].selector + " has the right value."
);
}
}