From 76da024ffc75fa5a2cf72cc2590259c6d7c6209e Mon Sep 17 00:00:00 2001 From: Thanos Karagiannis Date: Sat, 12 Jun 2021 18:25:03 +0300 Subject: [PATCH] test(css): update markup scenarios to include variables --- test/markup/css/variables.expect.txt | 9 +++++++++ test/markup/css/variables.txt | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 test/markup/css/variables.expect.txt create mode 100644 test/markup/css/variables.txt 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); +}