summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/scss
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sass/resources/scss')
-rw-r--r--tests/sass/resources/scss/semicolons.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/sass/resources/scss/semicolons.scss b/tests/sass/resources/scss/semicolons.scss
new file mode 100644
index 0000000000..a4a56043d5
--- /dev/null
+++ b/tests/sass/resources/scss/semicolons.scss
@@ -0,0 +1,9 @@
+.all-the-properties {
+ font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; ;
+ position: absolute;;
+ overflow: hidden;
+}
+.missing-semicolon-on-last-row {
+ color: red;
+ background-color: blue
+}