Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Tests for visited/unvisited rule.
const TEST_URI = URL_ROOT + "doc_visited_in_media_query.html";
add_task(async () => {
info("Open a url which has a visited link and the style in the media query");
const tab = await addTab(TEST_URI);
info("Wait until the visited link is available");
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, "a"), "Rule of a is shown");
});