-
Notifications
You must be signed in to change notification settings - Fork 88
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 #857 from xzyfer/feat/activate-1732
Activate specs for issue 1732
- Loading branch information
Showing
20 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
spec/libsass-todo-issues/issue_1732/error → ...issues/issue_1732/invalid/mixin-def/error
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Error: Properties are only allowed within rules, directives, mixin includes, or other properties. | ||
on line 2 of /sass/spec/libsass-issues/issue_1732/input.scss | ||
on line 2 of /sass/spec/libsass-issues/issue_1732/invalid/mixin-def/input.scss | ||
Use --trace for backtrace. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
spec/libsass-closed-issues/issue_1732/valid/directive/expected_output.css
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,2 @@ | ||
@media all { | ||
color: red; } |
3 changes: 3 additions & 0 deletions
3
spec/libsass-closed-issues/issue_1732/valid/directive/input.scss
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,3 @@ | ||
@media all { | ||
color: red; | ||
} |
7 changes: 7 additions & 0 deletions
7
spec/libsass-closed-issues/issue_1732/valid/keyframe/expected_output.css
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,7 @@ | ||
@keyframes baz { | ||
0% { | ||
top: 0; | ||
bottom: 100; } | ||
100% { | ||
top: 100; | ||
bottom: 0; } } |
4 changes: 4 additions & 0 deletions
4
spec/libsass-closed-issues/issue_1732/valid/keyframe/input.scss
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,4 @@ | ||
@keyframes baz { | ||
0% { top: 0; bottom: 100; } | ||
100% { top: 100; bottom: 0; } | ||
} |
2 changes: 2 additions & 0 deletions
2
spec/libsass-closed-issues/issue_1732/valid/mixin-call/expected_output.css
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,2 @@ | ||
foo { | ||
color: blue; } |
9 changes: 9 additions & 0 deletions
9
spec/libsass-closed-issues/issue_1732/valid/mixin-call/input.scss
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,9 @@ | ||
@mixin bar() { | ||
@content; | ||
} | ||
|
||
foo { | ||
@include bar { | ||
color: blue; | ||
} | ||
} |
Empty file.
3 changes: 3 additions & 0 deletions
3
spec/libsass-closed-issues/issue_1732/valid/mixin-def/input.scss
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,3 @@ | ||
@mixin a { | ||
b: c; | ||
} |
3 changes: 3 additions & 0 deletions
3
spec/libsass-closed-issues/issue_1732/valid/propset/expected_output.css
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,3 @@ | ||
foo { | ||
border-width: 1px; | ||
border-color: green; } |
6 changes: 6 additions & 0 deletions
6
spec/libsass-closed-issues/issue_1732/valid/propset/input.scss
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,6 @@ | ||
foo { | ||
border: { | ||
width: 1px; | ||
color: green; | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
spec/libsass-closed-issues/issue_1732/valid/ruleset/expected_output.css
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,2 @@ | ||
foo { | ||
color: green; } |
3 changes: 3 additions & 0 deletions
3
spec/libsass-closed-issues/issue_1732/valid/ruleset/input.scss
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,3 @@ | ||
foo { | ||
color: green; | ||
} |
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,3 @@ | ||
Error: Invalid CSS after "color: green": expected "{", was ";" | ||
on line 1 of /sass/spec/libsass-issues/issue_1732/invalid/ruleset/input.scss | ||
Use --trace for backtrace. |
Empty file.
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 @@ | ||
color: green; |
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 @@ | ||
65 |