Skip to content

Commit 8bf519e

Browse files
committed
Merge branch 'master' of https://github.com/sass/sass-spec
2 parents 6a9611a + 2243c81 commit 8bf519e

File tree

139 files changed

+795
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+795
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test {
2+
background-color: #cc0000 \9; }
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
$endColor: red;
2+
test {
3+
background-color: darken($endColor, 10%) \9;
4+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
div {
2+
top: 0px; }
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
div {
2+
top: 10px - 2 * 5px /* arrow size */;
3+
}

spec/libsass-todo-issues/issue_103/expected_output.css

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Checks if a number is even
2+
@function is-even($int) {
3+
@if $int % 2 == 0 {
4+
@return true;
5+
}
6+
@return false;
7+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Error: Invalid CSS after "hdr": expected selector, was "(2, 5)"

spec/libsass-todo-issues/issue_1079/expected_output.css

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#{hdr(2,5)} { color: #08c; }
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
65

0 commit comments

Comments
 (0)