update background-clip browser support and add tests.
This commit is contained in:
parent
31e77fe2ae
commit
236efc264b
@ -35,9 +35,9 @@ $default-background-clip: padding-box !default;
|
||||
@include experimental(background-clip, $clip,
|
||||
not -moz,
|
||||
not -webkit,
|
||||
-o,
|
||||
-ms,
|
||||
-khtml,
|
||||
not -o,
|
||||
not -ms,
|
||||
not -khtml,
|
||||
official
|
||||
);
|
||||
}
|
||||
|
4
test/fixtures/stylesheets/compass/css/background-clip.css
vendored
Normal file
4
test/fixtures/stylesheets/compass/css/background-clip.css
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
.background-clip {
|
||||
-moz-background-clip: border;
|
||||
-webkit-background-clip: border;
|
||||
background-clip: border-box; }
|
3
test/fixtures/stylesheets/compass/sass/background-clip.scss
vendored
Normal file
3
test/fixtures/stylesheets/compass/sass/background-clip.scss
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
@import "compass/css3/background-clip";
|
||||
|
||||
.background-clip { @include background-clip('border-box'); }
|
Loading…
Reference in New Issue
Block a user