mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-19 08:01:04 +00:00
16 lines
413 B
JavaScript
16 lines
413 B
JavaScript
/*!
|
|
{
|
|
"name": "output Element",
|
|
"property": "outputelem",
|
|
"tags": ["elem"],
|
|
"builderAliases": ["elem_output"],
|
|
"notes": [{
|
|
"name": "WhatWG Spec",
|
|
"href": "https://html.spec.whatwg.org/multipage/form-elements.html#the-output-element"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('outputelem', 'value' in createElement('output'));
|
|
});
|