Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
add bug-report fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
oyejorge committed Nov 4, 2015
1 parent d333e05 commit 6dc898f
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/Fixtures/bug-reports/css/259.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ParseError: Unexpected input in 259.less on line 2, column 3
1| #p-search {
2| margin: -2px !ie;
3| }
6 changes: 6 additions & 0 deletions test/Fixtures/bug-reports/css/261.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
div a + div a,
div a + div b,
div b + div a,
div b + div b {
margin-top: 0;
}
8 changes: 8 additions & 0 deletions test/Fixtures/bug-reports/css/269.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.test {
font-family: Arial, sans-serif;
font-weight: bold;
}
.another {
font-family: Arial, sans-serif !important;
font-weight: bold !important;
}
3 changes: 3 additions & 0 deletions test/Fixtures/bug-reports/less/259.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#p-search {
margin: -2px !ie;
}
5 changes: 5 additions & 0 deletions test/Fixtures/bug-reports/less/261.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
div {
a,b {
&+&{margin-top:0;}
}
}
7 changes: 7 additions & 0 deletions test/Fixtures/bug-reports/less/269.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.test {
font-family: Arial, sans-serif;
font-weight: bold;
}
.another {
.test() !important;
}

0 comments on commit 6dc898f

Please sign in to comment.