Skip to content

Commit

Permalink
Merge pull request #857 from xzyfer/feat/activate-1732
Browse files Browse the repository at this point in the history
Activate specs for issue 1732
  • Loading branch information
xzyfer committed May 2, 2016
2 parents 0140f7b + 6812ab2 commit c806a3c
Show file tree
Hide file tree
Showing 20 changed files with 50 additions and 1 deletion.
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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@media all {
color: red; }
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@media all {
color: red;
}
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; } }
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; }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
foo {
color: blue; }
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@mixin bar() {
@content;
}

foo {
@include bar {
color: blue;
}
}
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@mixin a {
b: c;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
foo {
border-width: 1px;
border-color: green; }
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
border: {
width: 1px;
color: green;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
foo {
color: green; }
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
foo {
color: green;
}
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1732/invalid/ruleset/error
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.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
color: green;
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1732/invalid/ruleset/status
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
65

0 comments on commit c806a3c

Please sign in to comment.