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-global-variable.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Setting CSS global variables</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
"use strict";
test(() => {
const { body } = document;
body.style.setProperty("top", "0px");
assert_equals(body.style.getPropertyValue("top"), "0px", 'Property value is "0px"');
body.style.setProperty("top", "unset");
assert_equals(body.style.getPropertyValue("top"), "unset", 'Property value changed to "unset"');
});
</script>