summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_add-property-and-reselect.js
blob: d71af090cffa1e9f94818be8d9c3c43961779729 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* 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(async function () {
  await addTab(TEST_URI);
  const { inspector, view } = await openRuleView();
  await selectNode("#target", inspector);

  info("Setting a font-weight property on all rules");
  await setPropertyOnAllRules(view, inspector);

  info("Reselecting the element");
  await selectNode("body", inspector);
  await selectNode("#target", inspector);

  checkPropertyOnAllRules(view);
});

async function setPropertyOnAllRules(view, inspector) {
  // Set the inline style rule first independently because it needs to wait for specific
  // events and the DOM mutation that it causes refreshes the rules view, so we need to
  // get the list of rules again later.
  info("Adding font-weight:bold in the inline style rule");
  const inlineStyleRuleEditor = view._elementStyle.rules[0].editor;

  const onMutation = inspector.once("markupmutation");
  const onRuleViewRefreshed = view.once("ruleview-refreshed");

  inlineStyleRuleEditor.addProperty("font-weight", "bold", "", true);

  await Promise.all([onMutation, onRuleViewRefreshed]);

  // Now set the other rules after having retrieved the list.
  const allRules = view._elementStyle.rules;

  for (let i = 1; i < allRules.length; i++) {
    info(`Adding font-weight:bold in rule ${i}`);
    const rule = allRules[i];
    const ruleEditor = rule.editor;

    const onRuleViewChanged = view.once("ruleview-changed");

    ruleEditor.addProperty("font-weight", "bold", "", true);

    await onRuleViewChanged;
  }
}

function checkPropertyOnAllRules(view) {
  for (const rule of view._elementStyle.rules) {
    const lastProperty = rule.textProps[rule.textProps.length - 1];

    is(lastProperty.name, "font-weight", "Last property name is font-weight");
    is(lastProperty.value, "bold", "Last property value is bold");
  }
}