mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
116
devtools/server/tests/mochitest/test_styles-layout.html
Normal file
116
devtools/server/tests/mochitest/test_styles-layout.html
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Test for Bug 1175040 - PageStyleActor.getLayout</title>
|
||||
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
|
||||
<script type="application/javascript;version=1.8" src="inspector-helpers.js"></script>
|
||||
<script type="application/javascript;version=1.8">
|
||||
"use strict";
|
||||
|
||||
window.onload = function() {
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
runNextTest();
|
||||
};
|
||||
|
||||
let gWalker = null;
|
||||
let gStyles = null;
|
||||
|
||||
addTest(function() {
|
||||
let url = document.getElementById("inspectorContent").href;
|
||||
attachURL(url, function(err, client, tab, doc) {
|
||||
let {InspectorFront} = require("devtools/shared/fronts/inspector");
|
||||
let inspector = InspectorFront(client, tab);
|
||||
promiseDone(inspector.getWalker().then(walker => {
|
||||
ok(walker, "getWalker() should return an actor.");
|
||||
gWalker = walker;
|
||||
return inspector.getPageStyle();
|
||||
}).then(styles => {
|
||||
gStyles = styles;
|
||||
}).then(runNextTest));
|
||||
});
|
||||
});
|
||||
|
||||
addTest(function() {
|
||||
ok(gStyles.getLayout, "The PageStyleActor has a getLayout method");
|
||||
runNextTest();
|
||||
});
|
||||
|
||||
addAsyncTest(function*() {
|
||||
let node = yield gWalker.querySelector(gWalker.rootNode, "#layout-element");
|
||||
let layout = yield gStyles.getLayout(node, {});
|
||||
|
||||
let properties = ["width", "height",
|
||||
"margin-top", "margin-right", "margin-bottom",
|
||||
"margin-left", "padding-top", "padding-right",
|
||||
"padding-bottom", "padding-left", "border-top-width",
|
||||
"border-right-width", "border-bottom-width",
|
||||
"border-left-width", "z-index", "box-sizing", "display",
|
||||
"position"];
|
||||
for (let prop of properties) {
|
||||
ok((prop in layout), "The layout object returned has " + prop);
|
||||
}
|
||||
|
||||
runNextTest();
|
||||
});
|
||||
|
||||
addAsyncTest(function*() {
|
||||
let node = yield gWalker.querySelector(gWalker.rootNode, "#layout-element");
|
||||
let layout = yield gStyles.getLayout(node, {});
|
||||
|
||||
let expected = {
|
||||
"box-sizing": "border-box",
|
||||
"position": "absolute",
|
||||
"z-index": "2",
|
||||
"display": "block",
|
||||
"width": 50,
|
||||
"height": 50,
|
||||
"margin-top": "10px",
|
||||
"margin-right": "20px",
|
||||
"margin-bottom": "30px",
|
||||
"margin-left": "0px"
|
||||
};
|
||||
|
||||
for (let name in expected) {
|
||||
is(layout[name], expected[name], "The " + name + " property is correct");
|
||||
}
|
||||
|
||||
runNextTest();
|
||||
});
|
||||
|
||||
addAsyncTest(function*() {
|
||||
let node = yield gWalker.querySelector(gWalker.rootNode,
|
||||
"#layout-auto-margin-element");
|
||||
|
||||
let layout = yield gStyles.getLayout(node, {});
|
||||
ok(!("autoMargins" in layout),
|
||||
"By default, getLayout doesn't return auto margins");
|
||||
|
||||
layout = yield gStyles.getLayout(node, {autoMargins: true});
|
||||
ok(("autoMargins" in layout),
|
||||
"getLayout does return auto margins when asked to");
|
||||
is(layout.autoMargins.left, "auto", "The left margin is auto");
|
||||
is(layout.autoMargins.right, "auto", "The right margin is auto");
|
||||
ok(!layout.autoMargins.bottom, "The bottom margin is not auto");
|
||||
ok(!layout.autoMargins.top, "The top margin is not auto");
|
||||
|
||||
runNextTest();
|
||||
});
|
||||
|
||||
addTest(function() {
|
||||
gStyles = gWalker = null;
|
||||
runNextTest();
|
||||
});
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1175040">Mozilla Bug 1175040</a>
|
||||
<a id="inspectorContent" target="_blank" href="inspector-styles-data.html">Test Document</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none"></div>
|
||||
<pre id="test">
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue