From 0ca4d05121db179a77e1ecc9cf8edce59a0df41a 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..f3f52a3eb6 --- /dev/null +++ b/test/markup/css/variables.expect.txt @@ -0,0 +1,9 @@ +body { + --text-color: red; + color: var(--text-color); +} + +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..745a14ec90 --- /dev/null +++ b/test/markup/css/variables.txt @@ -0,0 +1,9 @@ +body { + --text-color: red; + color: var(--text-color); +} + +body { + --textBlue: blue; + color: var(--textBlue); +}