Skip to content

Commit 838ed5c

Browse files
authored
Add a spec for an unquoted plain-CSS import (#1455)
See sass/dart-sass#799
1 parent cb1ab54 commit 838ed5c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

spec/directives/import/css.hrx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<===> unquoted/input.sass
2+
@import other.css
3+
4+
<===> unquoted/output.css
5+
@import "other.css";
6+
7+
<===> unquoted/output-libsass.css
8+
@import url(other.css);

0 commit comments

Comments
 (0)