mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-19 08:01:04 +00:00
19 lines
525 B
JavaScript
19 lines
525 B
JavaScript
/*!
|
|
{
|
|
"name": "Template Tag",
|
|
"property": "template",
|
|
"caniuse": "template",
|
|
"tags": ["elem"],
|
|
"notes": [{
|
|
"name": "HTML5Rocks Article",
|
|
"href": "https://www.html5rocks.com/en/tutorials/webcomponents/template/"
|
|
}, {
|
|
"name": "W3C Spec",
|
|
"href": "https://web.archive.org/web/20171130222649/http://www.w3.org/TR/html5/scripting-1.html"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('template', 'content' in createElement('template'));
|
|
});
|