From 7cc7910df63d19e7ebc67bb1156437f0559712d7 Mon Sep 17 00:00:00 2001 From: Lars Henrik Mai Date: Sun, 21 Sep 2014 12:25:47 +0200 Subject: add foundation via bower --- .../modernizr/feature-detects/mathml.js | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 source/bower_components/modernizr/feature-detects/mathml.js (limited to 'source/bower_components/modernizr/feature-detects/mathml.js') diff --git a/source/bower_components/modernizr/feature-detects/mathml.js b/source/bower_components/modernizr/feature-detects/mathml.js new file mode 100644 index 0000000..e1c907a --- /dev/null +++ b/source/bower_components/modernizr/feature-detects/mathml.js @@ -0,0 +1,23 @@ +// MathML +// http://www.w3.org/Math/ +// By Addy Osmani +// Based on work by Davide (@dpvc) and David (@davidcarlisle) +// in https://github.com/mathjax/MathJax/issues/182 + +Modernizr.addTest('mathml', function(){ + var hasMathML = false; + if ( document.createElementNS ) { + var ns = "http://www.w3.org/1998/Math/MathML", + div = document.createElement("div"); + div.style.position = "absolute"; + var mfrac = div.appendChild(document.createElementNS(ns,"math")) + .appendChild(document.createElementNS(ns,"mfrac")); + mfrac.appendChild(document.createElementNS(ns,"mi")) + .appendChild(document.createTextNode("xx")); + mfrac.appendChild(document.createElementNS(ns,"mi")) + .appendChild(document.createTextNode("yy")); + document.body.appendChild(div); + hasMathML = div.offsetHeight > div.offsetWidth; + } + return hasMathML; +}); \ No newline at end of file -- cgit v1.2.1