diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic')
4 files changed, 15 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/at-directive-in-if.css b/theme-compiler/tests/resources/automatic/css/at-directive-in-if.css new file mode 100644 index 0000000000..80d4821ead --- /dev/null +++ b/theme-compiler/tests/resources/automatic/css/at-directive-in-if.css @@ -0,0 +1 @@ +@font-face {}
\ No newline at end of file diff --git a/theme-compiler/tests/resources/automatic/css/negative-ch-value.css b/theme-compiler/tests/resources/automatic/css/negative-ch-value.css new file mode 100644 index 0000000000..2cc75b2a6d --- /dev/null +++ b/theme-compiler/tests/resources/automatic/css/negative-ch-value.css @@ -0,0 +1,3 @@ +* { + top: -0.1ch; +}
\ No newline at end of file diff --git a/theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss b/theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss new file mode 100644 index 0000000000..30556fb382 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss @@ -0,0 +1,8 @@ +@mixin test($italic: true) { + @if $italic { + @font-face { + } + } +} + +@include test;
\ No newline at end of file diff --git a/theme-compiler/tests/resources/automatic/scss/negative-ch-value.scss b/theme-compiler/tests/resources/automatic/scss/negative-ch-value.scss new file mode 100644 index 0000000000..2cc75b2a6d --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/negative-ch-value.scss @@ -0,0 +1,3 @@ +* { + top: -0.1ch; +}
\ No newline at end of file |