From 8c84869b0b6bc5396e264fea15c71d4e346ac5d0 Mon Sep 17 00:00:00 2001 From: Scott Davis Date: Wed, 18 Jan 2012 20:02:00 -0500 Subject: [PATCH] fixed tests --- .../fixtures/stylesheets/compass/css/background-clip.css | 9 +++++++-- .../stylesheets/compass/sass/background-clip.scss | 7 ++++++- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/test/fixtures/stylesheets/compass/css/background-clip.css b/test/fixtures/stylesheets/compass/css/background-clip.css index 683b7e12..45c9574d 100644 --- a/test/fixtures/stylesheets/compass/css/background-clip.css +++ b/test/fixtures/stylesheets/compass/css/background-clip.css @@ -1,5 +1,10 @@ .background-clip { - -moz-background-clip: border; -webkit-background-clip: border; - -khtml-background-clip: border-box; + -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; } \ No newline at end of file diff --git a/test/fixtures/stylesheets/compass/sass/background-clip.scss b/test/fixtures/stylesheets/compass/sass/background-clip.scss index 0716dabd..03fd4cc6 100644 --- a/test/fixtures/stylesheets/compass/sass/background-clip.scss +++ b/test/fixtures/stylesheets/compass/sass/background-clip.scss @@ -1,3 +1,8 @@ @import "compass/css3/background-clip"; -.background-clip { @include background-clip('border-box'); } \ No newline at end of file +.background-clip { @include background-clip('border-box'); } + +.background-clip-khtml { + $experimental-support-for-khtml:true; + @include background-clip('border-box'); +} \ No newline at end of file