Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/cssstyledeclaration-custom-properties.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Test: computed style declaration includes custom properties.</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div style="--foo:bar"></div>
<div></div>
<script>
test(function() {
let withCustom = getComputedStyle(document.querySelector("div"));
let withoutCustom = getComputedStyle(document.querySelector("div + div"));
assert_equals(withCustom.getPropertyValue("--foo"), "bar", "Should be returned from getPropertyValue");
assert_equals(withCustom.length, withoutCustom.length + 1, "Should show up in .length");
assert_equals(withCustom[withCustom.length - 1], "--foo", "Should be after all the non-custom properties");
}, "Custom properties are included in computed style");
</script>