diff --git a/spec/sass_3_5/fix-parent-with-newline/expected_output.css b/spec/sass_3_5/fix-parent-with-newline/expected_output.css new file mode 100644 index 0000000000..7dc31315b9 --- /dev/null +++ b/spec/sass_3_5/fix-parent-with-newline/expected_output.css @@ -0,0 +1,3 @@ +.baz .foo, +.baz .bar { + color: red; } diff --git a/spec/sass_3_5/fix-parent-with-newline/input.scss b/spec/sass_3_5/fix-parent-with-newline/input.scss new file mode 100644 index 0000000000..4d75193bd0 --- /dev/null +++ b/spec/sass_3_5/fix-parent-with-newline/input.scss @@ -0,0 +1,6 @@ +.foo, +.bar { + .baz & { + color: red; + } +}