removed ms prefix from box-sizing and added a test case

This commit is contained in:
Scott Davis 2012-01-02 00:48:43 -05:00
parent dec5c9cb3b
commit 6c98ff1d5c
3 changed files with 18 additions and 1 deletions

View File

@ -8,6 +8,6 @@
@mixin box-sizing($bs) {
$bs: unquote($bs);
@include experimental(box-sizing, $bs,
-moz, -webkit, not -o, -ms, not -khtml, official
-moz, -webkit, not -o, not -ms, not -khtml, official
);
}

View File

@ -0,0 +1,9 @@
.div {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box; }
.div {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }

View File

@ -0,0 +1,8 @@
@import "compass/css3/box-sizing";
.div {
@include box-sizing(content-box);
}
.div {
@include box-sizing(border-box);
}