Commit c5a52df1 by Aaron Leung

Handling uri values.

parent 64488fd5
...@@ -182,6 +182,13 @@ namespace Sass { ...@@ -182,6 +182,13 @@ namespace Sass {
} }
} break; } break;
case uri: {
string result("url(");
result += string(token);
result += ")";
return result;
} break;
default: { default: {
return string(token); return string(token);
} break; } break;
......
...@@ -21,7 +21,7 @@ div { ...@@ -21,7 +21,7 @@ div {
/* and this */ /* and this */
k: 15 / $three; k: 15 / $three;
l: 15 / 5 / $three; l: 15 / 5 / $three;
m: 1/2, $stuff; m: 1/2, $stuff url("www.foo.com/blah.png") blah blah;
n: 1 2 3, $stuff 4 5 (6, 7 8 9); n: 1 2 3, $stuff 4 5 (6, 7 8 9);
o: 3px + 3px; o: 3px + 3px;
p: 4 + 1em; p: 4 + 1em;
......
...@@ -17,7 +17,7 @@ div { ...@@ -17,7 +17,7 @@ div {
/* and this */ /* and this */
k: 5; k: 5;
l: 1; l: 1;
m: 1/2, 1 2 3; m: 1/2, 1 2 3 url("www.foo.com/blah.png") blah blah;
n: 1 2 3, 1 2 3 4 5 6, 7 8 9; n: 1 2 3, 1 2 3 4 5 6, 7 8 9;
o: 6px; o: 6px;
p: 5em; p: 5em;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment