Sign in
webkit
/
WebKit
/
2b7db40d04e23e466c35ac26a2cac6ea07d1f8ff
/
.
/
LayoutTests
/
css-custom-properties-api
/
border-variable-parsing-expected.html
blob: 4dd0b2db45a623b16710d8db1dabe28e288e3f18 [
file
] [
log
] [
blame
]
<style>
#
el1
{
--
foreground
:
100
;
border
:
30px
dashed
rgb
(
100
,
0
,
100
);
}
#
el2
{
--
foreground
:
100
;
border
:
30px
rgb
(
100
,
0
,
100
)
dashed
;
}
div
{
width
:
150px
;
height
:
150px
;
}
</style>
<div
id
=
"el1"
></div>
<div
id
=
"el2"
></div>