UNPKG

browsernizr

Version:

Modernizr wrapper for use with browserify

31 lines (28 loc) 896 B
/*! { "name": "Document Fragment", "property": "documentfragment", "notes": [{ "name": "W3C Spec", "href": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-B63ED1A3" }, { "name": "MDN Docs", "href": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment" }, { "name": "QuirksMode Compatibility Tables", "href": "https://www.quirksmode.org/m/w3c_core.html#t112" }], "authors": ["Ron Waldon (@jokeyrhyme)"], "knownBugs": ["false-positive on Blackberry 9500, see QuirksMode note"], "tags": ["dom"] } !*/ /* DOC Append multiple elements to the DOM within a single insertion. */ var Modernizr = require('./../../lib/Modernizr.js'); var docElement = require('./../../lib/docElement.js'); Modernizr.addTest('documentfragment', function() { return 'createDocumentFragment' in document && 'appendChild' in docElement; });