summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-color-property.html
blob: 4cb02d950b665cdbf22f3003c5c5b9908015bc13 (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
<!doctype html>
<html class="dark">
<head>
  <title>CSS Color Adjustment Test: the initial color is affected by color-scheme</title>
  <link rel="help" href="https://drafts.csswg.org/css-color-adjust/#color-scheme-processing">
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <style>
    .dark { color-scheme: dark }
    .light { color-scheme: light }
    .initial { color: initial }
  </style>
</head>
<body>
  <div id="dark" class="dark initial"></div>
  <div id="light" class="light initial"></div>
</body>
<script>
  test(() => {
    assert_equals(getComputedStyle(dark).color, getComputedStyle(document.documentElement).color);
    assert_not_equals(getComputedStyle(light).color, getComputedStyle(document.documentElement).color);
  }, "Check that color:initial resolves to the intial color for the dark color-scheme.");

  test(() => {
    document.documentElement.className = "light";
    assert_equals(getComputedStyle(light).color, getComputedStyle(document.documentElement).color);
    assert_not_equals(getComputedStyle(dark).color, getComputedStyle(document.documentElement).color);
  }, "Check that color:initial resolves to the intial color for the light color-scheme.");
</script>