blob: 5e1ee74ad9b5208eece25fb003eeff6957b2e996 [file] [log] [blame]
<!DOCTYPE html>
<title>CSS Color Adjust: getComputedStyle for color-scheme</title>
<link rel="help" href="https://drafts.csswg.org/css-color-adjust/#color-scheme-prop">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id="target"></div>
<script>
test_computed_value("color-scheme", "normal");
test_computed_value("color-scheme", "light dark");
test_computed_value("color-scheme", "dark light");
test_computed_value("color-scheme", "light unknown");
test_computed_value("color-scheme", "only light");
test_computed_value("color-scheme", "light light");
test_computed_value("color-scheme", "light only");
test_computed_value("color-scheme", "none");
test_computed_value("color-scheme", "only");
test_computed_value("color-scheme", "only only");
// reserved and css-wide keywords.
test_computed_value("color-scheme", "initial", "normal");
test_computed_value("color-scheme", "inherit", "normal");
test_computed_value("color-scheme", "unset", "normal");
test_computed_value("color-scheme", "revert", "normal");
</script>