mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-23 18:11:03 +00:00
19 lines
496 B
JavaScript
19 lines
496 B
JavaScript
/*!
|
|
{
|
|
"name": "Video crossOrigin",
|
|
"property": "videocrossorigin",
|
|
"caniuse": "cors",
|
|
"authors": ["Florian Mailliet"],
|
|
"notes": [{
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_settings_attributes"
|
|
}]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for the crossOrigin attribute on video tag
|
|
*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('videocrossorigin', 'crossOrigin' in createElement('video'));
|
|
});
|