mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-19 16:11:03 +00:00
19 lines
500 B
JavaScript
19 lines
500 B
JavaScript
/*!
|
|
{
|
|
"name": "picture Element",
|
|
"property": "picture",
|
|
"tags": ["elem"],
|
|
"authors": ["Scott Jehl", "Mat Marquis"],
|
|
"notes": [{
|
|
"name": "WHATWG Spec",
|
|
"href": "https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content"
|
|
}, {
|
|
"name": "Relevant spec issue",
|
|
"href": "https://github.com/ResponsiveImagesCG/picture-element/issues/87"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
Modernizr.addTest('picture', 'HTMLPictureElement' in window);
|
|
});
|