Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/style-backgroundcolor-oklch.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSSOM: Setting style.backgroundColor to oklch()</title>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="test"></div>
<script>
"use strict";
test(() => {
const div = document.getElementById("test");
div.style.backgroundColor = "oklch(76% .23 150)";
assert_equals(div.style.backgroundColor, "oklch(0.76 0.23 150)");
}, "Setting style.backgroundColor using oklch()");
</script>