1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1006595
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 1006595</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="application/javascript">
/** Test for Bug 1006595 **/
const InspectorUtils = SpecialPowers.InspectorUtils;
function arraysEqual(arr1, arr2, message) {
is(arr1.length, arr2.length, message + " length");
for (var i = 0; i < arr1.length; ++i) {
is(arr1[i], arr2[i], message + " element at index " + i);
}
}
var paddingSubProps = InspectorUtils.getSubpropertiesForCSSProperty("padding");
arraysEqual(paddingSubProps,
[ "padding-top",
"padding-right",
"padding-bottom",
"padding-left" ],
"'padding' subproperties");
var displaySubProps = InspectorUtils.getSubpropertiesForCSSProperty("color");
arraysEqual(displaySubProps, [ "color" ],
"'color' subproperties");
var varProps = InspectorUtils.getSubpropertiesForCSSProperty("--foo");
arraysEqual(varProps, ["--foo"], "'--foo' subproperties");
try {
InspectorUtils.cssPropertySupportsType("padding", 0);
ok(false, "Invalid types throw");
} catch (ex) {
ok(true, "Invalid types don't crash");
}
ok(InspectorUtils.cssPropertyIsShorthand("padding"), "'padding' is a shorthand")
ok(!InspectorUtils.cssPropertyIsShorthand("color"), "'color' is not a shorthand")
ok(!InspectorUtils.cssPropertySupportsType("padding", "color"),
"'padding' can't be a color");
ok(InspectorUtils.cssPropertySupportsType("color", "color"),
"'color' can be a color");
ok(InspectorUtils.cssPropertySupportsType("background", "color"),
"'background' can be a color");
ok(!InspectorUtils.cssPropertySupportsType("background-image", "color"),
"'background-image' can't be a color");
ok(InspectorUtils.cssPropertySupportsType("background-image", "gradient"),
"'background-image' can be a gradient");
ok(InspectorUtils.cssPropertySupportsType("background", "gradient"),
"'background' can be a gradient");
ok(!InspectorUtils.cssPropertySupportsType("background-color", "gradient"),
"'background-color' can't be a gradient");
ok(InspectorUtils.cssPropertySupportsType("transition", "timing-function"),
"'transition' can be a timing function");
ok(InspectorUtils.cssPropertySupportsType("transition-timing-function", "timing-function"),
"'transition-duration' can be a timing function");
ok(!InspectorUtils.cssPropertySupportsType("background-color", "timing-function"),
"'background-color' can't be a timing function");
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1006595">Mozilla Bug 1006595</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
</html>
|