Skip to content

Commit

Permalink
adding test cases for variable numbers of args
Browse files Browse the repository at this point in the history
  • Loading branch information
eluberoff committed Oct 24, 2013
1 parent f3609dd commit bc3effe
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
17 changes: 17 additions & 0 deletions test/cases/absolute.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,21 @@
position: absolute;
top: 5px;
left: 10px;
}
#login {
position: absolute;
top: 5px;
right: 5px;
bottom: 5px;
}
#login {
position: absolute;
top: 0;
}
#login {
position: absolute;
top: 0;
right: 5px;
bottom: 0;
left: 10px;
}
11 changes: 10 additions & 1 deletion test/cases/absolute.styl
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,13 @@
absolute bottom right

#login
absolute top 5px left 10px
absolute top 5px left 10px

#login
absolute top 5px right 5px bottom 5px

#login
absolute top

#login
absolute top right 5px bottom left 10px

0 comments on commit bc3effe

Please sign in to comment.