summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/mediaqueries/inverted-colors.html
blob: 69672f77912fe643c7777d5f010725e30bf3660c (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>
<link rel="help" href="https://drafts.csswg.org/mediaqueries-5/#inverted" />
<script type="text/javascript" src="/resources/testharness.js"></script>
<script type="text/javascript" src="/resources/testharnessreport.js"></script>

<script type="text/javascript" src="resources/matchmedia-utils.js"></script>
<script>
query_should_be_known("(inverted-colors)");
query_should_be_known("(inverted-colors: none)");
query_should_be_known("(inverted-colors: inverted)");

query_should_be_unknown("(inverted-colors: 0)");
query_should_be_unknown("(inverted-colors: no-preference)");
query_should_be_unknown("(inverted-colors: 10px)");
query_should_be_unknown("(inverted-colors: none inverted)");
query_should_be_unknown("(inverted-colors: none/inverted)");

test(() => {
  // https://drafts.csswg.org/mediaqueries-5/#boolean-context
  let booleanContext = window.matchMedia("(inverted-colors)");
  let none = window.matchMedia("(inverted-colors: none)");
  assert_equals(booleanContext.matches, !none.matches);
}, "Check that none evaluates to false in the boolean context");

test(() => {
  let invalid = window.matchMedia("(inverted-colors: 10px)");
  assert_equals(invalid.matches, false);
}, "Check that invalid evaluates to false");
</script>