diff --git a/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss b/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss index 5f480ac2..93ff8ac0 100644 --- a/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +++ b/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss @@ -8,6 +8,6 @@ @mixin box-sizing($bs) { $bs: unquote($bs); @include experimental(box-sizing, $bs, - -moz, -webkit, not -o, -ms, not -khtml, official + -moz, -webkit, not -o, not -ms, not -khtml, official ); } diff --git a/test/fixtures/stylesheets/compass/css/box-sizeing.css b/test/fixtures/stylesheets/compass/css/box-sizeing.css new file mode 100644 index 00000000..410f7d76 --- /dev/null +++ b/test/fixtures/stylesheets/compass/css/box-sizeing.css @@ -0,0 +1,9 @@ +.div { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; } + +.div { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } diff --git a/test/fixtures/stylesheets/compass/sass/box-sizeing.scss b/test/fixtures/stylesheets/compass/sass/box-sizeing.scss new file mode 100644 index 00000000..1338ee8e --- /dev/null +++ b/test/fixtures/stylesheets/compass/sass/box-sizeing.scss @@ -0,0 +1,8 @@ +@import "compass/css3/box-sizing"; + +.div { + @include box-sizing(content-box); +} +.div { + @include box-sizing(border-box); +} \ No newline at end of file