test/fixtures/stylesheets/compass/css/background-origin.css in compass-0.13.alpha.4 vs test/fixtures/stylesheets/compass/css/background-origin.css in compass-0.13.alpha.5

- old
+ new

@@ -1,15 +1,11 @@ .background-origin { - -webkit-background-origin: border; -moz-background-origin: border; + -o-background-origin: border-box; + -webkit-background-origin: border; background-origin: border-box; } .background-origin-multiple { - -webkit-background-origin: border, padding, content; -moz-background-origin: border, padding, content; + -o-background-origin: border-box, padding-box, content-box; + -webkit-background-origin: border, padding, content; background-origin: border-box, padding-box, content-box; } - -.background-origin-khtml { - -webkit-background-origin: border; - -moz-background-origin: border; - -khtml-background-origin: border-box; - background-origin: border-box; }