mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
22 lines
635 B
JavaScript
22 lines
635 B
JavaScript
/*!
|
|
{
|
|
"name": "Box Decoration Break",
|
|
"property": "boxdecorationbreak",
|
|
"caniuse": "css-boxdecorationbreak",
|
|
"tags": ["css"],
|
|
"notes": [{
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en-US/docs/Web/CSS/box-decoration-break"
|
|
}, {
|
|
"name": "Demo",
|
|
"href": "https://jsbin.com/xojoro/edit?css,output"
|
|
}]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
|
|
*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('boxdecorationbreak', testAllProps('boxDecorationBreak', 'slice'));
|
|
});
|