UNPKG

browsernizr

Version:

Modernizr wrapper for use with browserify

24 lines (22 loc) 680 B
/*! { "name": "[hidden] Attribute", "property": "hidden", "tags": ["dom"], "notes": [{ "name": "WHATWG Spec", "href": "https://html.spec.whatwg.org/dev/interaction.html#the-hidden-attribute" }, { "name": "original implementation of detect code", "href": "https://github.com/aFarkas/html5shiv/blob/bf4fcc4/src/html5shiv.js#L38" }], "polyfills": ["html5shiv"], "authors": ["Ron Waldon (@jokeyrhyme)"] } !*/ /* DOC Does the browser support the HTML5 [hidden] attribute? */ var Modernizr = require('./../../lib/Modernizr.js'); var createElement = require('./../../lib/createElement.js'); Modernizr.addTest('hidden', 'hidden' in createElement('a'));