mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +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
38
layout/inspector/tests/test_isinheritableproperty.html
Normal file
38
layout/inspector/tests/test_isinheritableproperty.html
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=699592
|
||||
-->
|
||||
<head>
|
||||
<title>Test for nsIDOMUtils::isInheritedProperty</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
|
||||
function do_test() {
|
||||
var utils = SpecialPowers.Cc["@mozilla.org/inspector/dom-utils;1"]
|
||||
.getService(SpecialPowers.Ci.inIDOMUtils);
|
||||
|
||||
is(utils.isInheritedProperty("font-size"), true, "font-size is inherited.");
|
||||
|
||||
is(utils.isInheritedProperty("min-width"), false, "min-width is not inherited.");
|
||||
|
||||
is(utils.isInheritedProperty("font"), true, "shorthand font property is inherited.");
|
||||
|
||||
is(utils.isInheritedProperty("border"), false, "shorthand border property not inherited.");
|
||||
is(utils.isInheritedProperty("garbage"), false, "Unknown property isn't inherited.");
|
||||
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
addLoadEvent(do_test);
|
||||
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue