mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
21 lines
674 B
JavaScript
21 lines
674 B
JavaScript
/*!
|
|
{
|
|
"name": "Box Sizing",
|
|
"property": "boxsizing",
|
|
"caniuse": "css3-boxsizing",
|
|
"polyfills": ["borderboxmodel", "boxsizingpolyfill", "borderbox"],
|
|
"tags": ["css"],
|
|
"builderAliases": ["css_boxsizing"],
|
|
"notes": [{
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing"
|
|
}, {
|
|
"name": "Related Github Issue",
|
|
"href": "https://github.com/Modernizr/Modernizr/issues/248"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('boxsizing', testAllProps('boxSizing', 'border-box', true) && (document.documentMode === undefined || document.documentMode > 7));
|
|
});
|