Sign in
chromium
/
external
/
WebKit_trimmed
/
65f21da6e4ae304d864fd5b88834e398b5a3d0cd
/
.
/
LayoutTests
/
css3
/
css-variable-definition.html
blob: a7cf8659bce373ab164955829fac94e0d2071b3d [
file
] [
log
] [
blame
]
<html>
<style>
:
root
{
-webkit-var-mycolor
:
red
;
}
div
{
color
:
-webkit-var
(
mycolor
);
}
</style>
<body>
<p>
Check that a CSS variable definition accepts spaces before the ':'
</p>
<div>
This text should be red
</div>
</body>
</html>