Skip to content

Commit

Permalink
Merge pull request #344 from xzyfer/feat/issue-1102
Browse files Browse the repository at this point in the history
Add specs for issue 1102
  • Loading branch information
xzyfer committed Apr 25, 2015
2 parents eea884b + b716f8d commit c76188c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1102/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo { display: expression("inline", (this.innerHTML += (this.innerHTML.indexOf(",") == -1 ? ", " : "")), this.runtimeStyle.display = "inline"); }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo{display:expression("inline", (this.innerHTML += (this.innerHTML.indexOf(",") == -1 ? ", " : "")), this.runtimeStyle.display = "inline")}
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1102/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
foo {
display: expression("inline", (this.innerHTML += (this.innerHTML.indexOf(",") == -1 ? ", " : "")), this.runtimeStyle.display = "inline");
}
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1102/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
foo {
display: expression("inline", (this.innerHTML += (this.innerHTML.indexOf(",") == -1 ? ", " : "")), this.runtimeStyle.display = "inline"); }
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1102/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
foo {
display:expression("inline",
(this.innerHTML += (this.innerHTML.indexOf(",") == -1 ? ", " : "")),
this.runtimeStyle.display = "inline");
}

0 comments on commit c76188c

Please sign in to comment.