Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add specs for issue 1098 #331

Merged
merged 1 commit into from
Apr 16, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1098/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
div { opacity: 1\9; width: 500px\9; color: #f00\9\0\;; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
div{opacity:1\9;width:500px\9;color:#f00\9\0\;}
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1098/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
div {
opacity: 1\9;
width: 500px\9;
color: #f00\9\0\;;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this double ;; may be an issue with Sass. /cc @mgreter @chriseppstein

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO that looks correct as one ; is escaped, as in the input. IMO the delimiter is optional for the last declaration!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're correct. My mistake.

}
4 changes: 4 additions & 0 deletions spec/libsass-todo-issues/issue_1098/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
div {
opacity: 1\9;
width: 500px\9;
color: #f00\9\0\;; }
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1098/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
div {
opacity: 1\9;
width: 500px\9;
color: #f00\9\0\;
}