Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
8a2c8a97dfd3af0fdb68d49fc58e1163aca8085a
/
.
/
LayoutTests
/
fast
/
css
/
variables
/
rule-property-get-css-value.html
blob: cb028bcc6afc25d9a403190df862fc626fd8d65f [
file
]
<html>
<head>
<style>
:
root
{
--
bgcolor
:
green
;
background
:
var
(--
bgcolor
);
}
</style>
<body>
<script>
document
.
write
(
document
.
styleSheets
[
0
].
cssRules
[
0
].
style
.
getPropertyCSSValue
(
"background-color"
).
cssText
)
</script>
</body>
</html.