diff --git a/test/markup/css/variables.expect.txt b/test/markup/css/variables.expect.txt new file mode 100644 index 0000000000..ce47f660d0 --- /dev/null +++ b/test/markup/css/variables.expect.txt @@ -0,0 +1,9 @@ +body { + --text-color-1: red; + color: var(--text-color-1); +} + +body { + --textBlue: blue; + color: var(--textBlue); +} diff --git a/test/markup/css/variables.txt b/test/markup/css/variables.txt new file mode 100644 index 0000000000..1c4afaa189 --- /dev/null +++ b/test/markup/css/variables.txt @@ -0,0 +1,9 @@ +body { + --text-color-1: red; + color: var(--text-color-1); +} + +body { + --textBlue: blue; + color: var(--textBlue); +}