diff --git a/spec/libsass-closed-issues/issue_1215/expected.compact.css b/spec/libsass-closed-issues/issue_1215/expected.compact.css new file mode 100644 index 0000000000..bfe83aafd0 --- /dev/null +++ b/spec/libsass-closed-issues/issue_1215/expected.compact.css @@ -0,0 +1 @@ +foo { -quotes: true; -quotes: true; -quotes: true; -quotes: false; -quotes: false; foo: this-string; foo: 'this-string'; foo: "this-string"; foo: '"this-string"'; foo: "'this-string'"; } diff --git a/spec/libsass-closed-issues/issue_1215/expected.compressed.css b/spec/libsass-closed-issues/issue_1215/expected.compressed.css new file mode 100644 index 0000000000..67c2ecc66b --- /dev/null +++ b/spec/libsass-closed-issues/issue_1215/expected.compressed.css @@ -0,0 +1 @@ +foo{-quotes:true;-quotes:true;-quotes:true;-quotes:false;-quotes:false;foo:this-string;foo:'this-string';foo:"this-string";foo:'"this-string"';foo:"'this-string'"} diff --git a/spec/libsass-closed-issues/issue_1215/expected.expanded.css b/spec/libsass-closed-issues/issue_1215/expected.expanded.css new file mode 100644 index 0000000000..32c8f9f298 --- /dev/null +++ b/spec/libsass-closed-issues/issue_1215/expected.expanded.css @@ -0,0 +1,12 @@ +foo { + -quotes: true; + -quotes: true; + -quotes: true; + -quotes: false; + -quotes: false; + foo: this-string; + foo: 'this-string'; + foo: "this-string"; + foo: '"this-string"'; + foo: "'this-string'"; +} diff --git a/spec/libsass-closed-issues/issue_1215/expected_output.css b/spec/libsass-closed-issues/issue_1215/expected_output.css new file mode 100644 index 0000000000..71a01ae619 --- /dev/null +++ b/spec/libsass-closed-issues/issue_1215/expected_output.css @@ -0,0 +1,11 @@ +foo { + -quotes: true; + -quotes: true; + -quotes: true; + -quotes: false; + -quotes: false; + foo: this-string; + foo: 'this-string'; + foo: "this-string"; + foo: '"this-string"'; + foo: "'this-string'"; } diff --git a/spec/libsass-closed-issues/issue_1215/input.scss b/spec/libsass-closed-issues/issue_1215/input.scss new file mode 100644 index 0000000000..c0666d866f --- /dev/null +++ b/spec/libsass-closed-issues/issue_1215/input.scss @@ -0,0 +1,12 @@ +foo { + -quotes: 'this-string' == 'this-string'; + -quotes: this-string == 'this-string'; + -quotes: 'this-string' == "this-string"; + -quotes: 'this-string' == '"this-string"'; + -quotes: '"this-string"' == "'this-string'"; + foo: this-string; + foo: 'this-string'; + foo: "this-string"; + foo: '"this-string"'; + foo: "'this-string'"; +}