Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
LayoutTests
/
fast
/
css
/
custom-properties
/
inheritance.html
blob: 8fc7ea82609cceb2bdbbf52313b27ca79cb6af6e [
file
] [
log
] [
blame
]
<html>
<head>
<style>
html
{
--
one
:
10px
;
}
body
{
--
one
:
50px
;
--
one
:
inherit
;
}
</style>
<body>
<script>
document
.
write
(
getComputedStyle
(
document
.
body
).
getPropertyValue
(
"--one"
))
</script>
</body>
</html>