From 0642deebc6a49fcad7d2422bdc8fbdd1d5b018c6 Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Fri, 13 Jan 2012 16:13:22 -0700 Subject: [PATCH] seems khtml might actually need the prefix for background-clip --- .../compass/stylesheets/compass/css3/_background-clip.scss | 2 +- test/fixtures/stylesheets/compass/css/background-clip.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frameworks/compass/stylesheets/compass/css3/_background-clip.scss b/frameworks/compass/stylesheets/compass/css3/_background-clip.scss index ec3ac342..6ce473f6 100644 --- a/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +++ b/frameworks/compass/stylesheets/compass/css3/_background-clip.scss @@ -37,7 +37,7 @@ $default-background-clip: padding-box !default; not -webkit, not -o, not -ms, - not -khtml, + -khtml, official ); } diff --git a/test/fixtures/stylesheets/compass/css/background-clip.css b/test/fixtures/stylesheets/compass/css/background-clip.css index a6f2e520..683b7e12 100644 --- a/test/fixtures/stylesheets/compass/css/background-clip.css +++ b/test/fixtures/stylesheets/compass/css/background-clip.css @@ -1,4 +1,5 @@ .background-clip { -moz-background-clip: border; -webkit-background-clip: border; + -khtml-background-clip: border-box; background-clip: border-box; }