Skip to content

Commit

Permalink
Fix and enables test for libsass PR 718
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Dec 16, 2014
1 parent 074ae3b commit 29f34d6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions spec/basic/16_hex_arithmetic/expected_output.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
div {
p01: #abc;
p02: #aabbcc;
p03: #aabbcchello;
p03: #abchello;
p04: #abbccd;
p05: #aabbdd;
p06: #0101ff;
Expand All @@ -13,10 +13,12 @@ div {
p12: yellow;
p13: #020202;
p14: black;
p15: 10-#222222;
p15a: 10-#222;
p15b: 10-#222222;
p16: black;
p17: magenta;
p18: 10 #232323;
p19: 10/#222222;
p19a: 10/#222;
p19b: 10/#222222;
p20: #0b0a0b;
p21: white; }
6 changes: 4 additions & 2 deletions spec/basic/16_hex_arithmetic/input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ div {
p12: #ffff00 + #010100; // yellow
p13: (#101010 / 7);
p14: #000 + 0;
p15: 10 - #222;
p15a: 10 - #222;
p15b: 10 - #222222;
p16: #000 - #001;
p17: #f0f + #101;
p18: 10 #222 + 1;
p19: (10 / #222);
p19a: (10 / #222);
p19b: (10 / #222222);
p20: rgb(10,10,10) + #010001;
p21: #010000 + rgb(255, 255, 255);
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ p {
color: redhux;
color: redgreen;
color: #ff8000;
color: 0xf 0; }
color: 0xf00; }
File renamed without changes.

0 comments on commit 29f34d6

Please sign in to comment.