Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-properties-values-api/at-property-optional-initial-value.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Properties and Values API: optional initial-value descriptor</title>
<link rel="help" href="https://drafts.css-houdini.org/css-properties-values-api/#initial-value-descriptor">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
@property --registered {
syntax: '*';
initial-value: ;
inherits: false;
}
#target {
--test-bg: var(--registered) green;
--test-fallback: var(--registered, red);
background-color: var(--test-bg, var(--test-fallback));
}
</style>
<div id="target"></div>
<script>
test(function() {
const target = document.getElementById('target');
const style = getComputedStyle(target);
// When initial-value is omitted (empty space), the property should be registered
// with a space character as the initial value, making var(--registered) green
// evaluate to " green" which is a valid color value.
assert_equals(style.backgroundColor, 'rgb(0, 128, 0)',
'background-color should be green when @property has empty initial-value');
}, '@property with empty initial-value should use space character');
</script>