File: scroll-marker-group-003.html

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (91 lines) | stat: -rw-r--r-- 3,403 bytes parent folder | download | duplicates (10)
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
<!doctype html>
<meta charset="utf-8">
<title>CSS Test: ::scroll-marker-group and ::after invalidation</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-group-pseudo">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  :root {
    --after-background: red;
    --scroll-marker-group-background: red;
  }

  div {
    scroll-marker-group: after;
  }

  div>* {
    background: green;
    display: flex;
    height: 20px;
    width: 100px;
  }

  div.before::before {
    background: green;
    content: "";
    display: flex;
    height: 20px;
    width: 100px;
  }

  div.after::after {
    background: var(--after-background);
    content: "";
    display: flex;
    height: 20px;
    width: 100px;
  }

  div.scroll-marker-group::scroll-marker-group {
    background: var(--scroll-marker-group-background);
    display: flex;
    height: 20px;
    width: 100px;
  }
</style>
<p>Test passes if there is a <strong>filled green rectangle</strong>.
<div id="target">
  <li></li>
  <li></li>
</div>
<script>
  function assertPseudoElementProperty(originatingElement, pseudoType, width, height, backgroundColor) {
    const pseudoStyle = getComputedStyle(originatingElement, pseudoType);
    const pseudoWidth = pseudoStyle.getPropertyValue('width');
    const pseudoHeight = pseudoStyle.getPropertyValue('height');
    const pseudoBackgroundColor = pseudoStyle.getPropertyValue('background-color');
    assert_equals(width, pseudoWidth, pseudoType + " width should be " + width.toString() + " but was " + pseudoWidth.toString());
    assert_equals(height, pseudoHeight, pseudoType + " height should be " + height.toString() + " but was " + pseudoHeight.toString());
    assert_equals(backgroundColor, pseudoBackgroundColor, pseudoType + " background should be " + backgroundColor.toString() + " but was " + pseudoBackgroundColor.toString());
  }
  document.documentElement.offsetTop;
  target.className = "after";
  document.documentElement.offsetTop;
  test(() => {
    assertPseudoElementProperty(target, "::scroll-marker-group", "auto", "auto", "rgba(0, 0, 0, 0)");
  }, "::scroll-marker-group empty");
  target.className = "scroll-marker-group";
  document.documentElement.offsetTop;
  test(() => {
    assertPseudoElementProperty(target, "::scroll-marker-group", "100px", "20px", "rgb(255, 0, 0)");
  }, "::scroll-marker-group with red background");
  target.className = "";
  document.documentElement.offsetTop;
  test(() => {
    assertPseudoElementProperty(target, "::scroll-marker-group", "auto", "auto", "rgba(0, 0, 0, 0)");
  }, "::scroll-marker-group empty again");
  target.className = "after scroll-marker-group before";
  document.documentElement.offsetTop;
  test(() => {
    assertPseudoElementProperty(target, "::scroll-marker-group", "100px", "20px", "rgb(255, 0, 0)");
  }, "::scroll-marker-group with red background again");
  document.documentElement.offsetTop;
  document.documentElement.style.setProperty('--after-background', 'green');
  document.documentElement.offsetTop;
  document.documentElement.style.setProperty('--scroll-marker-group-background', 'green');
  document.documentElement.offsetTop;
  test(() => {
    assertPseudoElementProperty(target, "::scroll-marker-group", "100px", "20px", "rgb(0, 128, 0)");
  }, "::scroll-marker-group with green background");
</script>