mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-19 08:01:04 +00:00
24 lines
716 B
JavaScript
24 lines
716 B
JavaScript
/*!
|
|
{
|
|
"name": "datalist Element",
|
|
"caniuse": "datalist",
|
|
"property": "datalistelem",
|
|
"tags": ["elem"],
|
|
"builderAliases": ["elem_datalist"],
|
|
"warnings": ["This test is a dupe of Modernizr.input.list. Only around for legacy reasons."],
|
|
"notes": [{
|
|
"name": "CSS Tricks Article",
|
|
"href": "https://css-tricks.com/relevant-dropdowns-polyfill-for-datalist/"
|
|
}, {
|
|
"name": "Mike Taylor Code",
|
|
"href": "https://miketaylr.com/code/datalist.html"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'test/input'], function(Modernizr) {
|
|
// lol. we already have a test for datalist built in! silly you.
|
|
// Leaving it around in case anyone's using it
|
|
|
|
Modernizr.addTest('datalistelem', Modernizr.input.list);
|
|
});
|