summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/color-initial-canvastext.html
blob: 97ea2b7b68f899c1385b490c745ef69201460f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<title>CSS Color 4: Initial value of the color property</title>
<link rel="help" href="https://drafts.csswg.org/css-color/#the-color-property">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  #ref { color: canvastext }
  #initial { color: initial }
</style>
<div id="ref"></div>
<div id="initial"></div>
<script>
  const canvastext = getComputedStyle(ref).color;

  test(() => {
    assert_equals(getComputedStyle(document.documentElement).color, canvastext);
  }, "Check that the resolved value for the initial color on the root element matches canvastext.");

  test(() => {
    assert_equals(getComputedStyle(initial).color, canvastext);
  }, "Check that the resolved value of an explicit color:initial matches canvastext.");
</script>