-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1094 from mgreter/todo/issue_2320
Add todo spec test for libsass issue 2320
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@charset "UTF-8"; | ||
.test-1 { | ||
content: "f"; | ||
} | ||
|
||
.test-2 { | ||
content: "g"; | ||
} | ||
|
||
.test-3 { | ||
content: "f"; | ||
} | ||
|
||
.test-4 { | ||
content: "g"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
$char-f: '\66'; | ||
$char-g: '\67'; | ||
|
||
.test-1 { | ||
content: '#{$char-f}\feff'; | ||
} | ||
|
||
.test-2 { | ||
content: '#{$char-g}\feff'; | ||
} | ||
|
||
// this is broken | ||
.test-3 { | ||
content: '\feff#{$char-f}'; | ||
} | ||
|
||
.test-4 { | ||
content: '\feff#{$char-g}'; | ||
} |