fixed tests

This commit is contained in:
Scott Davis 2012-01-18 20:02:00 -05:00
parent 3df5ba3369
commit 8c84869b0b
2 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,10 @@
.background-clip {
-moz-background-clip: border;
-webkit-background-clip: border;
-moz-background-clip: border;
background-clip: border-box; }
.background-clip-khtml {
-webkit-background-clip: border;
-moz-background-clip: border;
-khtml-background-clip: border-box;
background-clip: border-box; }

View File

@ -1,3 +1,8 @@
@import "compass/css3/background-clip";
.background-clip { @include background-clip('border-box'); }
.background-clip-khtml {
$experimental-support-for-khtml:true;
@include background-clip('border-box');
}