mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08: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
22
devtools/client/inspector/rules/test/browser_rules_cssom.js
Normal file
22
devtools/client/inspector/rules/test/browser_rules_cssom.js
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
||||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
"use strict";
|
||||
|
||||
// Test to ensure that CSSOM doesn't make the rule view blow up.
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=1224121
|
||||
|
||||
const TEST_URI = URL_ROOT + "doc_cssom.html";
|
||||
|
||||
add_task(function* () {
|
||||
yield addTab(TEST_URI);
|
||||
let {inspector, view} = yield openRuleView();
|
||||
yield selectNode("#target", inspector);
|
||||
|
||||
let elementStyle = view._elementStyle;
|
||||
let rule = elementStyle.rules[1];
|
||||
|
||||
is(rule.textProps.length, 1, "rule should have one property");
|
||||
is(rule.textProps[0].name, "color", "the property should be 'color'");
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue