diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/inspector/tests/test_bug1006595.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/inspector/tests/test_bug1006595.html')
-rw-r--r-- | layout/inspector/tests/test_bug1006595.html | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/layout/inspector/tests/test_bug1006595.html b/layout/inspector/tests/test_bug1006595.html new file mode 100644 index 000000000..009269d37 --- /dev/null +++ b/layout/inspector/tests/test_bug1006595.html @@ -0,0 +1,118 @@ +<!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 **/ + 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 utils = SpecialPowers.Cc["@mozilla.org/inspector/dom-utils;1"] + .getService(SpecialPowers.Ci.inIDOMUtils); + + var paddingSubProps = utils.getSubpropertiesForCSSProperty("padding"); + arraysEqual(paddingSubProps, + [ "padding-top", + "padding-right", + "padding-bottom", + "padding-left" ], + "'padding' subproperties"); + + var displaySubProps = utils.getSubpropertiesForCSSProperty("color"); + arraysEqual(displaySubProps, [ "color" ], + "'color' subproperties"); + + var varProps = utils.getSubpropertiesForCSSProperty("--foo"); + arraysEqual(varProps, ["--foo"], "'--foo' subproperties"); + + ok(utils.cssPropertyIsShorthand("padding"), "'padding' is a shorthand") + ok(!utils.cssPropertyIsShorthand("color"), "'color' is not a shorthand") + + ok(utils.cssPropertySupportsType("padding", utils.TYPE_LENGTH), + "'padding' can be a length"); + ok(!utils.cssPropertySupportsType("padding", utils.TYPE_COLOR), + "'padding' can't be a color"); + + ok(utils.cssPropertySupportsType("padding", utils.TYPE_PERCENTAGE), + "'padding' can be a percentage"); + ok(!utils.cssPropertySupportsType("color", utils.TYPE_PERCENTAGE), + "'color' can't be a percentage"); + + ok(utils.cssPropertySupportsType("color", utils.TYPE_COLOR), + "'color' can be a color"); + ok(utils.cssPropertySupportsType("background", utils.TYPE_COLOR), + "'background' can be a color"); + ok(!utils.cssPropertySupportsType("background-image", utils.TYPE_COLOR), + "'background-image' can't be a color"); + + ok(utils.cssPropertySupportsType("background-image", utils.TYPE_URL), + "'background-image' can be a URL"); + ok(utils.cssPropertySupportsType("background", utils.TYPE_URL), + "'background' can be a URL"); + ok(!utils.cssPropertySupportsType("background-color", utils.TYPE_URL), + "'background-color' can't be a URL"); + + // There are no properties claiming to be of TYPE_ANGLE. image-orientation + // would be, but it doesn't use table-driven parsing. + + // There are no properties claiming to be of TYPE_FREQUENCY + + ok(utils.cssPropertySupportsType("transition", utils.TYPE_TIME), + "'transition' can be a time"); + ok(utils.cssPropertySupportsType("transition-duration", utils.TYPE_TIME), + "'transition-duration' can be a time"); + ok(!utils.cssPropertySupportsType("background-color", utils.TYPE_TIME), + "'background-color' can't be a time"); + + ok(utils.cssPropertySupportsType("background-image", utils.TYPE_GRADIENT), + "'background-image' can be a gradient"); + ok(utils.cssPropertySupportsType("background", utils.TYPE_GRADIENT), + "'background' can be a gradient"); + ok(!utils.cssPropertySupportsType("background-color", utils.TYPE_GRADIENT), + "'background-color' can't be a gradient"); + + ok(utils.cssPropertySupportsType("transition", utils.TYPE_TIMING_FUNCTION), + "'transition' can be a timing function"); + ok(utils.cssPropertySupportsType("transition-timing-function", + utils.TYPE_TIMING_FUNCTION), + "'transition-duration' can be a timing function"); + ok(!utils.cssPropertySupportsType("background-color", + utils.TYPE_TIMING_FUNCTION), + "'background-color' can't be a timing function"); + + ok(utils.cssPropertySupportsType("background-image", utils.TYPE_IMAGE_RECT), + "'background-image' can be an image rect"); + ok(utils.cssPropertySupportsType("background", utils.TYPE_IMAGE_RECT), + "'background' can be an image rect"); + ok(!utils.cssPropertySupportsType("background-color", utils.TYPE_IMAGE_RECT), + "'background-color' can't be an image rect"); + + ok(utils.cssPropertySupportsType("z-index", utils.TYPE_NUMBER), + "'z-index' can be a number"); + ok(utils.cssPropertySupportsType("line-height", utils.TYPE_NUMBER), + "'line-height' can be a number"); + ok(!utils.cssPropertySupportsType("background-color", utils.TYPE_NUMBER), + "'background-color' can't be a number"); + + </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> |