diff options
Diffstat (limited to 'layout/reftests/w3c-css/submitted/variables/support/external-variable-reference.css')
-rw-r--r-- | layout/reftests/w3c-css/submitted/variables/support/external-variable-reference.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/layout/reftests/w3c-css/submitted/variables/support/external-variable-reference.css b/layout/reftests/w3c-css/submitted/variables/support/external-variable-reference.css new file mode 100644 index 000000000..0c697fdcf --- /dev/null +++ b/layout/reftests/w3c-css/submitted/variables/support/external-variable-reference.css @@ -0,0 +1,6 @@ +:root { + --a: green; +} +p { + color: var(--a); +} |