mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
21 lines
573 B
JavaScript
21 lines
573 B
JavaScript
/*!
|
|
{
|
|
"name": "CSS Shapes",
|
|
"property": "shapes",
|
|
"tags": ["css"],
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://www.w3.org/TR/css-shapes"
|
|
}, {
|
|
"name": "Examples from Adobe",
|
|
"href": "https://web.archive.org/web/20171230010236/http://webplatform.adobe.com:80/shapes"
|
|
}, {
|
|
"name": "Examples from CSS-Tricks",
|
|
"href": "https://css-tricks.com/examples/ShapesOfCSS/"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('shapes', testAllProps('shapeOutside', 'content-box', true));
|
|
});
|