update background-clip browser support and add tests.

This commit is contained in:
Eric Meyer 2012-01-13 15:49:06 -07:00
parent 31e77fe2ae
commit 236efc264b
3 changed files with 10 additions and 3 deletions

View File

@ -35,9 +35,9 @@ $default-background-clip: padding-box !default;
@include experimental(background-clip, $clip, @include experimental(background-clip, $clip,
not -moz, not -moz,
not -webkit, not -webkit,
-o, not -o,
-ms, not -ms,
-khtml, not -khtml,
official official
); );
} }

View File

@ -0,0 +1,4 @@
.background-clip {
-moz-background-clip: border;
-webkit-background-clip: border;
background-clip: border-box; }

View File

@ -0,0 +1,3 @@
@import "compass/css3/background-clip";
.background-clip { @include background-clip('border-box'); }