mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
15 lines
423 B
JavaScript
15 lines
423 B
JavaScript
/*!
|
|
{
|
|
"name": "placeholder attribute",
|
|
"property": "placeholder",
|
|
"tags": ["forms", "attribute"],
|
|
"builderAliases": ["forms_placeholder"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Tests for placeholder attribute in inputs and textareas
|
|
*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('placeholder', ('placeholder' in createElement('input') && 'placeholder' in createElement('textarea')));
|
|
});
|