зеркало из https://github.com/mozilla/gecko-dev.git
80 строки
3.0 KiB
HTML
80 строки
3.0 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1006595
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 1006595</title>
|
|
<script type="application/javascript" 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");
|
|
|
|
ok(InspectorUtils.cssPropertyIsShorthand("padding"), "'padding' is a shorthand")
|
|
ok(!InspectorUtils.cssPropertyIsShorthand("color"), "'color' is not a shorthand")
|
|
|
|
ok(!InspectorUtils.cssPropertySupportsType("padding", InspectorUtils.TYPE_COLOR),
|
|
"'padding' can't be a color");
|
|
|
|
ok(InspectorUtils.cssPropertySupportsType("color", InspectorUtils.TYPE_COLOR),
|
|
"'color' can be a color");
|
|
ok(InspectorUtils.cssPropertySupportsType("background", InspectorUtils.TYPE_COLOR),
|
|
"'background' can be a color");
|
|
ok(!InspectorUtils.cssPropertySupportsType("background-image", InspectorUtils.TYPE_COLOR),
|
|
"'background-image' can't be a color");
|
|
|
|
ok(InspectorUtils.cssPropertySupportsType("background-image", InspectorUtils.TYPE_GRADIENT),
|
|
"'background-image' can be a gradient");
|
|
ok(InspectorUtils.cssPropertySupportsType("background", InspectorUtils.TYPE_GRADIENT),
|
|
"'background' can be a gradient");
|
|
ok(!InspectorUtils.cssPropertySupportsType("background-color", InspectorUtils.TYPE_GRADIENT),
|
|
"'background-color' can't be a gradient");
|
|
|
|
ok(InspectorUtils.cssPropertySupportsType("transition", InspectorUtils.TYPE_TIMING_FUNCTION),
|
|
"'transition' can be a timing function");
|
|
ok(InspectorUtils.cssPropertySupportsType("transition-timing-function",
|
|
InspectorUtils.TYPE_TIMING_FUNCTION),
|
|
"'transition-duration' can be a timing function");
|
|
ok(!InspectorUtils.cssPropertySupportsType("background-color",
|
|
InspectorUtils.TYPE_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>
|