summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html
blob: 6068a076f0da862b834982b60fc1d46c94c72b46 (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
64
65
66
67
<!DOCTYPE html>

  <meta charset="UTF-8">

  <title>CSS Pseudo-Elements Test: higher specificity of selectors (Example 11)</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
  <link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-cascade">
  <link rel="match" href="cascade-highlight-001-ref.html">

  <!--
  Example 11 is
  https://www.w3.org/TR/css-pseudo-4/#example-c35bf49a
  -->

  <meta name="assert" content="This test is an adaptation (or modified version) of Example 11 (#example-c35bf49a). The 'div &gt; span::selection' selector has an higher specificity than the 'span::selection' selector.">

  <link rel="stylesheet" href="support/highlights.css">
  <style>
  div
    {
      font-size: 300%;
    }

  div::selection
    {
      background-color: green;
      color: yellow;
    }

  div > span::selection
  /*
  count the number of element names and pseudo-elements in the selector (= d)
  a=0 b=0 c=0 d=3 -> specificity = 0,0,0,3
  */
    {
      background-color: green;
    }

  span::selection
  /*
  count the number of element names and pseudo-elements in the selector (= d)
  a=0 b=0 c=0 d=2 -> specificity = 0,0,0,2
  */
    {
      background-color: red;
      color: yellow;
    }
  </style>

  <script>
  function startTest()
  {
  var targetRange = document.createRange();
  /* We first create an empty range */
  targetRange.selectNodeContents(document.getElementById("test"));
  /* Then we set the range boundaries to the children of div#test */
  window.getSelection().addRange(targetRange);
  /* Finally, we now select such range of content */
  }
  </script>

  <body onload="startTest();">

  <p>Test passes if background color of "Text sample" is green and <strong>not red</strong>.

  <div id="test" class="highlight_reftest">Text <span>sample</span></div>