UNPKG

browsernizr

Version:

Modernizr wrapper for use with browserify

22 lines (20 loc) 579 B
/*! { "name": "SVG foreignObject", "property": "svgforeignobject", "tags": ["svg"], "notes": [{ "name": "W3C Spec", "href": "https://www.w3.org/TR/SVG11/extend.html" }] } !*/ /* DOC Detects support for foreignObject tag in SVG. */ var Modernizr = require('./../../lib/Modernizr.js'); var toStringFn = require('./../../lib/toStringFn.js'); Modernizr.addTest('svgforeignobject', function() { return !!document.createElementNS && /SVGForeignObject/.test(toStringFn.call(document.createElementNS('http://www.w3.org/2000/svg', 'foreignObject'))); });