summaryrefslogtreecommitdiff
path: root/source/bower_components/modernizr/feature-detects/css-boxsizing.js
blob: ab90913b58b1f9552182aac628d697a1b1ceb928 (plain)
1
2
3
4
5
6
7
8
9

// developer.mozilla.org/en/CSS/box-sizing
// github.com/Modernizr/Modernizr/issues/248

Modernizr.addTest("boxsizing",function(){
    return Modernizr.testAllProps("boxSizing") && (document.documentMode === undefined || document.documentMode > 7);
});