summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_pseudo-visited_with_style-attribute.js
blob: 97d1458b7201daf7ec3de1b89edac873de9f67c8 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Tests that the rule view works for an element with a visited pseudo class
// with a style attribute defined.

const TEST_URI = URL_ROOT + "doc_visited_with_style_attribute.html";

add_task(async () => {
  info(
    "Open a page which has an element with a visited pseudo class and a style attribute"
  );
  const tab = await addTab(TEST_URI);

  info("Wait until the link has been visited");
  await waitUntilVisitedState(tab, ["#visited"]);

  info("Open the inspector");
  const { inspector, view } = await openRuleView();

  info("Check whether the rule view is shown correctly for visited element");
  await selectNode("#visited", inspector);
  ok(getRuleViewRule(view, "element"), "Rule of a is shown");
});