File: target-pseudo-in-has.html

package info (click to toggle)
firefox-esr 140.4.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,539,276 kB
  • sloc: cpp: 7,381,286; javascript: 6,388,710; ansic: 3,710,139; python: 1,393,780; xml: 628,165; asm: 426,918; java: 184,004; sh: 65,742; makefile: 19,302; objc: 13,059; perl: 12,912; yacc: 4,583; cs: 3,846; pascal: 3,352; lex: 1,720; ruby: 1,226; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (103 lines) | stat: -rw-r--r-- 4,117 bytes parent folder | download | duplicates (12)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<meta charset="utf-8" />
<title>CSS Selectors Invalidation: :target pseudo-class in :has() argument</title>
<link rel="help" href="https://drafts.csswg.org/selectors/#relational">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  #parent1 { color: grey; }
  #parent1:has(:target) { color: green; }

  #parent2 { color: blue; }
  #parent2:has(:not(:target)) { color: grey; }
  #parent2:has(:target) { color: green; }

  #parent3 { color: green; }
  #parent3:not(:has(:target)) { color: grey; }
</style>
<a href="#fragment">link to #fragment</a>
<a href="#fragment2">link to #fragment2</a>
<a href="#fragment3">link to #fragment3</a>
<a href="#">link to #</a>
<div id="parent1">
  1:
  <span id="fragment">Must be green when containing :target</span>
</div>
<div id="parent2">
  2:
  <span id="fragment2">Must be green when containing :target</span>
</div>
<div id="parent3">
  3:
  <span id="fragment3">Must be green when containing :target</span>
</div>
<script>
  const GREEN = "rgb(0, 128, 0)";
  const GREY = "rgb(128, 128, 128)";
  const BLUE = "rgb(0, 0, 255)";

  async function navigateFragment(fragment) {
    return new Promise(resolve => {
      let hashChanged = (e) => {
        if (location.hash.substring(1) === fragment) {
          resolve();
          window.removeEventListener("hashchange", hashChanged);
        }
      };
      window.addEventListener("hashchange", hashChanged);
      fragmentLink(fragment).click();
    });
  }

  function fragmentLink(fragment) {
    return document.querySelector(`a[href="#${fragment}"]`);
  }

  promise_test(async () => {
    const fragment = document.querySelector("#fragment");
    const fragment2 = document.querySelector("#fragment2");
    const fragment3 = document.querySelector("#fragment3");

    location.hash = "";

    assert_equals(getComputedStyle(parent1).color, GREY, "parent1 should be grey without :target");
    assert_equals(getComputedStyle(parent2).color, GREY, "parent2 should be grey without :target");
    assert_equals(getComputedStyle(parent3).color, GREY, "parent3 should be grey without :target");

    await navigateFragment("fragment");

    assert_true(fragment.matches(":target"));
    assert_equals(getComputedStyle(parent1).color, GREEN, "parent1 should be green on fragment click");
    assert_equals(getComputedStyle(parent2).color, GREY, "parent2 should be grey without :target");
    assert_equals(getComputedStyle(parent3).color, GREY, "parent3 should be grey without :target");

    await navigateFragment("fragment2");

    assert_true(fragment2.matches(":target"));
    assert_equals(getComputedStyle(parent1).color, GREY, "parent1 should be grey without :target");
    assert_equals(getComputedStyle(parent2).color, GREEN, "parent2 should be green on fragment click");
    assert_equals(getComputedStyle(parent3).color, GREY, "parent3 should be grey without :target");

    fragment2.remove();
    assert_equals(getComputedStyle(parent2).color, BLUE, "parent2 should be blue after removing only child");

    parent2.append(fragment2);

    // Skip to check parent2 color since there is nothing in the spec mentioning DOM mutations affecting the target element.
    // - https://html.spec.whatwg.org/multipage/browsing-the-web.html#scroll-to-fragid

    await navigateFragment("fragment3");

    assert_true(fragment3.matches(":target"));
    assert_equals(getComputedStyle(parent1).color, GREY, "parent1 should be grey without :target");
    assert_equals(getComputedStyle(parent2).color, GREY, "parent2 should be grey without :target");
    assert_equals(getComputedStyle(parent3).color, GREEN, "parent3 should be green on fragment click");

    await navigateFragment("");

    assert_equals(location.hash, "");
    assert_equals(getComputedStyle(parent1).color, GREY, "parent1 should be grey without :target");
    assert_equals(getComputedStyle(parent2).color, GREY, "parent2 should be grey without :target");
    assert_equals(getComputedStyle(parent3).color, GREY, "parent3 should be grey without :target");
  });
</script>