blob: 492739abe4b5d382a9314ccfdeb8268369e5c9b6 (
plain)
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
|
/* 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";
// Tests that adding properties to rules work and reselecting the element still
// show them.
const TEST_URI = URL_ROOT + "doc_content_stylesheet.html";
add_task(function* () {
yield addTab(TEST_URI);
let {inspector, view} = yield openRuleView();
yield selectNode("#target", inspector);
info("Setting a font-weight property on all rules");
yield setPropertyOnAllRules(view);
info("Reselecting the element");
yield selectNode("body", inspector);
yield selectNode("#target", inspector);
checkPropertyOnAllRules(view);
});
function* setPropertyOnAllRules(view) {
// Wait for the properties to be properly created on the backend and for the
// view to be updated.
let onRefreshed = view.once("ruleview-refreshed");
for (let rule of view._elementStyle.rules) {
rule.editor.addProperty("font-weight", "bold", "", true);
}
yield onRefreshed;
}
function checkPropertyOnAllRules(view) {
for (let rule of view._elementStyle.rules) {
let lastRule = rule.textProps[rule.textProps.length - 1];
is(lastRule.name, "font-weight", "Last rule name is font-weight");
is(lastRule.value, "bold", "Last rule value is bold");
}
}
|