modernizr-2.5.3.js 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266
  1. /*!
  2. * Modernizr v2.5.3
  3. * www.modernizr.com
  4. *
  5. * Copyright (c) Faruk Ates, Paul Irish, Alex Sexton
  6. * Available under the BSD and MIT licenses: www.modernizr.com/license/
  7. */
  8. /*
  9. * Modernizr tests which native CSS3 and HTML5 features are available in
  10. * the current UA and makes the results available to you in two ways:
  11. * as properties on a global Modernizr object, and as classes on the
  12. * <html> element. This information allows you to progressively enhance
  13. * your pages with a granular level of control over the experience.
  14. *
  15. * Modernizr has an optional (not included) conditional resource loader
  16. * called Modernizr.load(), based on Yepnope.js (yepnopejs.com).
  17. * To get a build that includes Modernizr.load(), as well as choosing
  18. * which tests to include, go to www.modernizr.com/download/
  19. *
  20. * Authors Faruk Ates, Paul Irish, Alex Sexton
  21. * Contributors Ryan Seddon, Ben Alman
  22. */
  23. window.Modernizr = (function( window, document, undefined ) {
  24. var version = '2.5.3',
  25. Modernizr = {},
  26. // option for enabling the HTML classes to be added
  27. enableClasses = true,
  28. docElement = document.documentElement,
  29. /**
  30. * Create our "modernizr" element that we do most feature tests on.
  31. */
  32. mod = 'modernizr',
  33. modElem = document.createElement(mod),
  34. mStyle = modElem.style,
  35. /**
  36. * Create the input element for various Web Forms feature tests.
  37. */
  38. inputElem = document.createElement('input'),
  39. smile = ':)',
  40. toString = {}.toString,
  41. // List of property values to set for css tests. See ticket #21
  42. prefixes = ' -webkit- -moz- -o- -ms- '.split(' '),
  43. // Following spec is to expose vendor-specific style properties as:
  44. // elem.style.WebkitBorderRadius
  45. // and the following would be incorrect:
  46. // elem.style.webkitBorderRadius
  47. // Webkit ghosts their properties in lowercase but Opera & Moz do not.
  48. // Microsoft uses a lowercase `ms` instead of the correct `Ms` in IE8+
  49. // erik.eae.net/archives/2008/03/10/21.48.10/
  50. // More here: github.com/Modernizr/Modernizr/issues/issue/21
  51. omPrefixes = 'Webkit Moz O ms',
  52. cssomPrefixes = omPrefixes.split(' '),
  53. domPrefixes = omPrefixes.toLowerCase().split(' '),
  54. ns = {'svg': 'http://www.w3.org/2000/svg'},
  55. tests = {},
  56. inputs = {},
  57. attrs = {},
  58. classes = [],
  59. slice = classes.slice,
  60. featureName, // used in testing loop
  61. // Inject element with style element and some CSS rules
  62. injectElementWithStyles = function( rule, callback, nodes, testnames ) {
  63. var style, ret, node,
  64. div = document.createElement('div'),
  65. // After page load injecting a fake body doesn't work so check if body exists
  66. body = document.body,
  67. // IE6 and 7 won't return offsetWidth or offsetHeight unless it's in the body element, so we fake it.
  68. fakeBody = body ? body : document.createElement('body');
  69. if ( parseInt(nodes, 10) ) {
  70. // In order not to give false positives we create a node for each test
  71. // This also allows the method to scale for unspecified uses
  72. while ( nodes-- ) {
  73. node = document.createElement('div');
  74. node.id = testnames ? testnames[nodes] : mod + (nodes + 1);
  75. div.appendChild(node);
  76. }
  77. }
  78. // <style> elements in IE6-9 are considered 'NoScope' elements and therefore will be removed
  79. // when injected with innerHTML. To get around this you need to prepend the 'NoScope' element
  80. // with a 'scoped' element, in our case the soft-hyphen entity as it won't mess with our measurements.
  81. // msdn.microsoft.com/en-us/library/ms533897%28VS.85%29.aspx
  82. // Documents served as xml will throw if using &shy; so use xml friendly encoded version. See issue #277
  83. style = ['&#173;','<style>', rule, '</style>'].join('');
  84. div.id = mod;
  85. // IE6 will false positive on some tests due to the style element inside the test div somehow interfering offsetHeight, so insert it into body or fakebody.
  86. // Opera will act all quirky when injecting elements in documentElement when page is served as xml, needs fakebody too. #270
  87. fakeBody.innerHTML += style;
  88. fakeBody.appendChild(div);
  89. if(!body){
  90. //avoid crashing IE8, if background image is used
  91. fakeBody.style.background = "";
  92. docElement.appendChild(fakeBody);
  93. }
  94. ret = callback(div, rule);
  95. // If this is done after page load we don't want to remove the body so check if body exists
  96. !body ? fakeBody.parentNode.removeChild(fakeBody) : div.parentNode.removeChild(div);
  97. return !!ret;
  98. },
  99. // adapted from matchMedia polyfill
  100. // by Scott Jehl and Paul Irish
  101. // gist.github.com/786768
  102. testMediaQuery = function( mq ) {
  103. var matchMedia = window.matchMedia || window.msMatchMedia;
  104. if ( matchMedia ) {
  105. return matchMedia(mq).matches;
  106. }
  107. var bool;
  108. injectElementWithStyles('@media ' + mq + ' { #' + mod + ' { position: absolute; } }', function( node ) {
  109. bool = (window.getComputedStyle ?
  110. getComputedStyle(node, null) :
  111. node.currentStyle)['position'] == 'absolute';
  112. });
  113. return bool;
  114. },
  115. /**
  116. * isEventSupported determines if a given element supports the given event
  117. * function from yura.thinkweb2.com/isEventSupported/
  118. */
  119. isEventSupported = (function() {
  120. var TAGNAMES = {
  121. 'select': 'input', 'change': 'input',
  122. 'submit': 'form', 'reset': 'form',
  123. 'error': 'img', 'load': 'img', 'abort': 'img'
  124. };
  125. function isEventSupported( eventName, element ) {
  126. element = element || document.createElement(TAGNAMES[eventName] || 'div');
  127. eventName = 'on' + eventName;
  128. // When using `setAttribute`, IE skips "unload", WebKit skips "unload" and "resize", whereas `in` "catches" those
  129. var isSupported = eventName in element;
  130. if ( !isSupported ) {
  131. // If it has no `setAttribute` (i.e. doesn't implement Node interface), try generic element
  132. if ( !element.setAttribute ) {
  133. element = document.createElement('div');
  134. }
  135. if ( element.setAttribute && element.removeAttribute ) {
  136. element.setAttribute(eventName, '');
  137. isSupported = is(element[eventName], 'function');
  138. // If property was created, "remove it" (by setting value to `undefined`)
  139. if ( !is(element[eventName], 'undefined') ) {
  140. element[eventName] = undefined;
  141. }
  142. element.removeAttribute(eventName);
  143. }
  144. }
  145. element = null;
  146. return isSupported;
  147. }
  148. return isEventSupported;
  149. })();
  150. // hasOwnProperty shim by kangax needed for Safari 2.0 support
  151. var _hasOwnProperty = ({}).hasOwnProperty, hasOwnProperty;
  152. if ( !is(_hasOwnProperty, 'undefined') && !is(_hasOwnProperty.call, 'undefined') ) {
  153. hasOwnProperty = function (object, property) {
  154. return _hasOwnProperty.call(object, property);
  155. };
  156. }
  157. else {
  158. hasOwnProperty = function (object, property) { /* yes, this can give false positives/negatives, but most of the time we don't care about those */
  159. return ((property in object) && is(object.constructor.prototype[property], 'undefined'));
  160. };
  161. }
  162. // Taken from ES5-shim https://github.com/kriskowal/es5-shim/blob/master/es5-shim.js
  163. // ES-5 15.3.4.5
  164. // http://es5.github.com/#x15.3.4.5
  165. if (!Function.prototype.bind) {
  166. Function.prototype.bind = function bind(that) {
  167. var target = this;
  168. if (typeof target != "function") {
  169. throw new TypeError();
  170. }
  171. var args = slice.call(arguments, 1),
  172. bound = function () {
  173. if (this instanceof bound) {
  174. var F = function(){};
  175. F.prototype = target.prototype;
  176. var self = new F;
  177. var result = target.apply(
  178. self,
  179. args.concat(slice.call(arguments))
  180. );
  181. if (Object(result) === result) {
  182. return result;
  183. }
  184. return self;
  185. } else {
  186. return target.apply(
  187. that,
  188. args.concat(slice.call(arguments))
  189. );
  190. }
  191. };
  192. return bound;
  193. };
  194. }
  195. /**
  196. * setCss applies given styles to the Modernizr DOM node.
  197. */
  198. function setCss( str ) {
  199. mStyle.cssText = str;
  200. }
  201. /**
  202. * setCssAll extrapolates all vendor-specific css strings.
  203. */
  204. function setCssAll( str1, str2 ) {
  205. return setCss(prefixes.join(str1 + ';') + ( str2 || '' ));
  206. }
  207. /**
  208. * is returns a boolean for if typeof obj is exactly type.
  209. */
  210. function is( obj, type ) {
  211. return typeof obj === type;
  212. }
  213. /**
  214. * contains returns a boolean for if substr is found within str.
  215. */
  216. function contains( str, substr ) {
  217. return !!~('' + str).indexOf(substr);
  218. }
  219. /**
  220. * testProps is a generic CSS / DOM property test; if a browser supports
  221. * a certain property, it won't return undefined for it.
  222. * A supported CSS property returns empty string when its not yet set.
  223. */
  224. function testProps( props, prefixed ) {
  225. for ( var i in props ) {
  226. if ( mStyle[ props[i] ] !== undefined ) {
  227. return prefixed == 'pfx' ? props[i] : true;
  228. }
  229. }
  230. return false;
  231. }
  232. /**
  233. * testDOMProps is a generic DOM property test; if a browser supports
  234. * a certain property, it won't return undefined for it.
  235. */
  236. function testDOMProps( props, obj, elem ) {
  237. for ( var i in props ) {
  238. var item = obj[props[i]];
  239. if ( item !== undefined) {
  240. // return the property name as a string
  241. if (elem === false) return props[i];
  242. // let's bind a function
  243. if (is(item, 'function')){
  244. // default to autobind unless override
  245. return item.bind(elem || obj);
  246. }
  247. // return the unbound function or obj or value
  248. return item;
  249. }
  250. }
  251. return false;
  252. }
  253. /**
  254. * testPropsAll tests a list of DOM properties we want to check against.
  255. * We specify literally ALL possible (known and/or likely) properties on
  256. * the element including the non-vendor prefixed one, for forward-
  257. * compatibility.
  258. */
  259. function testPropsAll( prop, prefixed, elem ) {
  260. var ucProp = prop.charAt(0).toUpperCase() + prop.substr(1),
  261. props = (prop + ' ' + cssomPrefixes.join(ucProp + ' ') + ucProp).split(' ');
  262. // did they call .prefixed('boxSizing') or are we just testing a prop?
  263. if(is(prefixed, "string") || is(prefixed, "undefined")) {
  264. return testProps(props, prefixed);
  265. // otherwise, they called .prefixed('requestAnimationFrame', window[, elem])
  266. } else {
  267. props = (prop + ' ' + (domPrefixes).join(ucProp + ' ') + ucProp).split(' ');
  268. return testDOMProps(props, prefixed, elem);
  269. }
  270. }
  271. /**
  272. * testBundle tests a list of CSS features that require element and style injection.
  273. * By bundling them together we can reduce the need to touch the DOM multiple times.
  274. */
  275. /*>>testBundle*/
  276. var testBundle = (function( styles, tests ) {
  277. var style = styles.join(''),
  278. len = tests.length;
  279. injectElementWithStyles(style, function( node, rule ) {
  280. var style = document.styleSheets[document.styleSheets.length - 1],
  281. // IE8 will bork if you create a custom build that excludes both fontface and generatedcontent tests.
  282. // So we check for cssRules and that there is a rule available
  283. // More here: github.com/Modernizr/Modernizr/issues/288 & github.com/Modernizr/Modernizr/issues/293
  284. cssText = style ? (style.cssRules && style.cssRules[0] ? style.cssRules[0].cssText : style.cssText || '') : '',
  285. children = node.childNodes, hash = {};
  286. while ( len-- ) {
  287. hash[children[len].id] = children[len];
  288. }
  289. /*>>touch*/ Modernizr['touch'] = ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch || (hash['touch'] && hash['touch'].offsetTop) === 9; /*>>touch*/
  290. /*>>csstransforms3d*/ Modernizr['csstransforms3d'] = (hash['csstransforms3d'] && hash['csstransforms3d'].offsetLeft) === 9 && hash['csstransforms3d'].offsetHeight === 3; /*>>csstransforms3d*/
  291. /*>>generatedcontent*/Modernizr['generatedcontent'] = (hash['generatedcontent'] && hash['generatedcontent'].offsetHeight) >= 1; /*>>generatedcontent*/
  292. /*>>fontface*/ Modernizr['fontface'] = /src/i.test(cssText) &&
  293. cssText.indexOf(rule.split(' ')[0]) === 0; /*>>fontface*/
  294. }, len, tests);
  295. })([
  296. // Pass in styles to be injected into document
  297. /*>>fontface*/ '@font-face {font-family:"font";src:url("https://")}' /*>>fontface*/
  298. /*>>touch*/ ,['@media (',prefixes.join('touch-enabled),('),mod,')',
  299. '{#touch{top:9px;position:absolute}}'].join('') /*>>touch*/
  300. /*>>csstransforms3d*/ ,['@media (',prefixes.join('transform-3d),('),mod,')',
  301. '{#csstransforms3d{left:9px;position:absolute;height:3px;}}'].join('')/*>>csstransforms3d*/
  302. /*>>generatedcontent*/,['#generatedcontent:after{content:"',smile,'";visibility:hidden}'].join('') /*>>generatedcontent*/
  303. ],
  304. [
  305. /*>>fontface*/ 'fontface' /*>>fontface*/
  306. /*>>touch*/ ,'touch' /*>>touch*/
  307. /*>>csstransforms3d*/ ,'csstransforms3d' /*>>csstransforms3d*/
  308. /*>>generatedcontent*/,'generatedcontent' /*>>generatedcontent*/
  309. ]);/*>>testBundle*/
  310. /**
  311. * Tests
  312. * -----
  313. */
  314. // The *new* flexbox
  315. // dev.w3.org/csswg/css3-flexbox
  316. tests['flexbox'] = function() {
  317. return testPropsAll('flexOrder');
  318. };
  319. // The *old* flexbox
  320. // www.w3.org/TR/2009/WD-css3-flexbox-20090723/
  321. tests['flexbox-legacy'] = function() {
  322. return testPropsAll('boxDirection');
  323. };
  324. // On the S60 and BB Storm, getContext exists, but always returns undefined
  325. // so we actually have to call getContext() to verify
  326. // github.com/Modernizr/Modernizr/issues/issue/97/
  327. tests['canvas'] = function() {
  328. var elem = document.createElement('canvas');
  329. return !!(elem.getContext && elem.getContext('2d'));
  330. };
  331. tests['canvastext'] = function() {
  332. return !!(Modernizr['canvas'] && is(document.createElement('canvas').getContext('2d').fillText, 'function'));
  333. };
  334. // this test initiates a new webgl context.
  335. // webk.it/70117 is tracking a legit feature detect proposal
  336. tests['webgl'] = function() {
  337. try {
  338. var canvas = document.createElement('canvas'),
  339. ret;
  340. ret = !!(window.WebGLRenderingContext && (canvas.getContext('experimental-webgl') || canvas.getContext('webgl')));
  341. canvas = undefined;
  342. } catch (e){
  343. ret = false;
  344. }
  345. return ret;
  346. };
  347. /*
  348. * The Modernizr.touch test only indicates if the browser supports
  349. * touch events, which does not necessarily reflect a touchscreen
  350. * device, as evidenced by tablets running Windows 7 or, alas,
  351. * the Palm Pre / WebOS (touch) phones.
  352. *
  353. * Additionally, Chrome (desktop) used to lie about its support on this,
  354. * but that has since been rectified: crbug.com/36415
  355. *
  356. * We also test for Firefox 4 Multitouch Support.
  357. *
  358. * For more info, see: modernizr.github.com/Modernizr/touch.html
  359. */
  360. tests['touch'] = function() {
  361. return Modernizr['touch'];
  362. };
  363. /**
  364. * geolocation tests for the new Geolocation API specification.
  365. * This test is a standards compliant-only test; for more complete
  366. * testing, including a Google Gears fallback, please see:
  367. * code.google.com/p/geo-location-javascript/
  368. * or view a fallback solution using google's geo API:
  369. * gist.github.com/366184
  370. */
  371. tests['geolocation'] = function() {
  372. return !!navigator.geolocation;
  373. };
  374. // Per 1.6:
  375. // This used to be Modernizr.crosswindowmessaging but the longer
  376. // name has been deprecated in favor of a shorter and property-matching one.
  377. // The old API is still available in 1.6, but as of 2.0 will throw a warning,
  378. // and in the first release thereafter disappear entirely.
  379. tests['postmessage'] = function() {
  380. return !!window.postMessage;
  381. };
  382. // Chrome incognito mode used to throw an exception when using openDatabase
  383. // It doesn't anymore.
  384. tests['websqldatabase'] = function() {
  385. return !!window.openDatabase;
  386. };
  387. // Vendors had inconsistent prefixing with the experimental Indexed DB:
  388. // - Webkit's implementation is accessible through webkitIndexedDB
  389. // - Firefox shipped moz_indexedDB before FF4b9, but since then has been mozIndexedDB
  390. // For speed, we don't test the legacy (and beta-only) indexedDB
  391. tests['indexedDB'] = function() {
  392. return !!testPropsAll("indexedDB",window);
  393. };
  394. // documentMode logic from YUI to filter out IE8 Compat Mode
  395. // which false positives.
  396. tests['hashchange'] = function() {
  397. return isEventSupported('hashchange', window) && (document.documentMode === undefined || document.documentMode > 7);
  398. };
  399. // Per 1.6:
  400. // This used to be Modernizr.historymanagement but the longer
  401. // name has been deprecated in favor of a shorter and property-matching one.
  402. // The old API is still available in 1.6, but as of 2.0 will throw a warning,
  403. // and in the first release thereafter disappear entirely.
  404. tests['history'] = function() {
  405. return !!(window.history && history.pushState);
  406. };
  407. tests['draganddrop'] = function() {
  408. var div = document.createElement('div');
  409. return ('draggable' in div) || ('ondragstart' in div && 'ondrop' in div);
  410. };
  411. // FIXME: Once FF10 is sunsetted, we can drop prefixed MozWebSocket
  412. // bugzil.la/695635
  413. tests['websockets'] = function() {
  414. for ( var i = -1, len = cssomPrefixes.length; ++i < len; ){
  415. if ( window[cssomPrefixes[i] + 'WebSocket'] ){
  416. return true;
  417. }
  418. }
  419. return 'WebSocket' in window;
  420. };
  421. // css-tricks.com/rgba-browser-support/
  422. tests['rgba'] = function() {
  423. // Set an rgba() color and check the returned value
  424. setCss('background-color:rgba(150,255,150,.5)');
  425. return contains(mStyle.backgroundColor, 'rgba');
  426. };
  427. tests['hsla'] = function() {
  428. // Same as rgba(), in fact, browsers re-map hsla() to rgba() internally,
  429. // except IE9 who retains it as hsla
  430. setCss('background-color:hsla(120,40%,100%,.5)');
  431. return contains(mStyle.backgroundColor, 'rgba') || contains(mStyle.backgroundColor, 'hsla');
  432. };
  433. tests['multiplebgs'] = function() {
  434. // Setting multiple images AND a color on the background shorthand property
  435. // and then querying the style.background property value for the number of
  436. // occurrences of "url(" is a reliable method for detecting ACTUAL support for this!
  437. setCss('background:url(https://),url(https://),red url(https://)');
  438. // If the UA supports multiple backgrounds, there should be three occurrences
  439. // of the string "url(" in the return value for elemStyle.background
  440. return /(url\s*\(.*?){3}/.test(mStyle.background);
  441. };
  442. // In testing support for a given CSS property, it's legit to test:
  443. // `elem.style[styleName] !== undefined`
  444. // If the property is supported it will return an empty string,
  445. // if unsupported it will return undefined.
  446. // We'll take advantage of this quick test and skip setting a style
  447. // on our modernizr element, but instead just testing undefined vs
  448. // empty string.
  449. tests['backgroundsize'] = function() {
  450. return testPropsAll('backgroundSize');
  451. };
  452. tests['borderimage'] = function() {
  453. return testPropsAll('borderImage');
  454. };
  455. // Super comprehensive table about all the unique implementations of
  456. // border-radius: muddledramblings.com/table-of-css3-border-radius-compliance
  457. tests['borderradius'] = function() {
  458. return testPropsAll('borderRadius');
  459. };
  460. // WebOS unfortunately false positives on this test.
  461. tests['boxshadow'] = function() {
  462. return testPropsAll('boxShadow');
  463. };
  464. // FF3.0 will false positive on this test
  465. tests['textshadow'] = function() {
  466. return document.createElement('div').style.textShadow === '';
  467. };
  468. tests['opacity'] = function() {
  469. // Browsers that actually have CSS Opacity implemented have done so
  470. // according to spec, which means their return values are within the
  471. // range of [0.0,1.0] - including the leading zero.
  472. setCssAll('opacity:.55');
  473. // The non-literal . in this regex is intentional:
  474. // German Chrome returns this value as 0,55
  475. // github.com/Modernizr/Modernizr/issues/#issue/59/comment/516632
  476. return /^0.55$/.test(mStyle.opacity);
  477. };
  478. // Note, Android < 4 will pass this test, but can only animate
  479. // a single property at a time
  480. // daneden.me/2011/12/putting-up-with-androids-bullshit/
  481. tests['cssanimations'] = function() {
  482. return testPropsAll('animationName');
  483. };
  484. tests['csscolumns'] = function() {
  485. return testPropsAll('columnCount');
  486. };
  487. tests['cssgradients'] = function() {
  488. /**
  489. * For CSS Gradients syntax, please see:
  490. * webkit.org/blog/175/introducing-css-gradients/
  491. * developer.mozilla.org/en/CSS/-moz-linear-gradient
  492. * developer.mozilla.org/en/CSS/-moz-radial-gradient
  493. * dev.w3.org/csswg/css3-images/#gradients-
  494. */
  495. var str1 = 'background-image:',
  496. str2 = 'gradient(linear,left top,right bottom,from(#9f9),to(white));',
  497. str3 = 'linear-gradient(left top,#9f9, white);';
  498. setCss(
  499. // legacy webkit syntax (FIXME: remove when syntax not in use anymore)
  500. (str1 + '-webkit- '.split(' ').join(str2 + str1)
  501. // standard syntax // trailing 'background-image:'
  502. + prefixes.join(str3 + str1)).slice(0, -str1.length)
  503. );
  504. return contains(mStyle.backgroundImage, 'gradient');
  505. };
  506. tests['cssreflections'] = function() {
  507. return testPropsAll('boxReflect');
  508. };
  509. tests['csstransforms'] = function() {
  510. return !!testPropsAll('transform');
  511. };
  512. tests['csstransforms3d'] = function() {
  513. var ret = !!testPropsAll('perspective');
  514. // Webkit's 3D transforms are passed off to the browser's own graphics renderer.
  515. // It works fine in Safari on Leopard and Snow Leopard, but not in Chrome in
  516. // some conditions. As a result, Webkit typically recognizes the syntax but
  517. // will sometimes throw a false positive, thus we must do a more thorough check:
  518. if ( ret && 'webkitPerspective' in docElement.style ) {
  519. // Webkit allows this media query to succeed only if the feature is enabled.
  520. // `@media (transform-3d),(-o-transform-3d),(-moz-transform-3d),(-ms-transform-3d),(-webkit-transform-3d),(modernizr){ ... }`
  521. ret = Modernizr['csstransforms3d'];
  522. }
  523. return ret;
  524. };
  525. tests['csstransitions'] = function() {
  526. return testPropsAll('transition');
  527. };
  528. /*>>fontface*/
  529. // @font-face detection routine by Diego Perini
  530. // javascript.nwbox.com/CSSSupport/
  531. // false positives in WebOS: github.com/Modernizr/Modernizr/issues/342
  532. tests['fontface'] = function() {
  533. return Modernizr['fontface'];
  534. };
  535. /*>>fontface*/
  536. // CSS generated content detection
  537. tests['generatedcontent'] = function() {
  538. return Modernizr['generatedcontent'];
  539. };
  540. // These tests evaluate support of the video/audio elements, as well as
  541. // testing what types of content they support.
  542. //
  543. // We're using the Boolean constructor here, so that we can extend the value
  544. // e.g. Modernizr.video // true
  545. // Modernizr.video.ogg // 'probably'
  546. //
  547. // Codec values from : github.com/NielsLeenheer/html5test/blob/9106a8/index.html#L845
  548. // thx to NielsLeenheer and zcorpan
  549. // Note: in some older browsers, "no" was a return value instead of empty string.
  550. // It was live in FF3.5.0 and 3.5.1, but fixed in 3.5.2
  551. // It was also live in Safari 4.0.0 - 4.0.4, but fixed in 4.0.5
  552. tests['video'] = function() {
  553. var elem = document.createElement('video'),
  554. bool = false;
  555. // IE9 Running on Windows Server SKU can cause an exception to be thrown, bug #224
  556. try {
  557. if ( bool = !!elem.canPlayType ) {
  558. bool = new Boolean(bool);
  559. bool.ogg = elem.canPlayType('video/ogg; codecs="theora"') .replace(/^no$/,'');
  560. bool.h264 = elem.canPlayType('video/mp4; codecs="avc1.42E01E"') .replace(/^no$/,'');
  561. bool.webm = elem.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,'');
  562. }
  563. } catch(e) { }
  564. return bool;
  565. };
  566. tests['audio'] = function() {
  567. var elem = document.createElement('audio'),
  568. bool = false;
  569. try {
  570. if ( bool = !!elem.canPlayType ) {
  571. bool = new Boolean(bool);
  572. bool.ogg = elem.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,'');
  573. bool.mp3 = elem.canPlayType('audio/mpeg;') .replace(/^no$/,'');
  574. // Mimetypes accepted:
  575. // developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
  576. // bit.ly/iphoneoscodecs
  577. bool.wav = elem.canPlayType('audio/wav; codecs="1"') .replace(/^no$/,'');
  578. bool.m4a = ( elem.canPlayType('audio/x-m4a;') ||
  579. elem.canPlayType('audio/aac;')) .replace(/^no$/,'');
  580. }
  581. } catch(e) { }
  582. return bool;
  583. };
  584. // In FF4, if disabled, window.localStorage should === null.
  585. // Normally, we could not test that directly and need to do a
  586. // `('localStorage' in window) && ` test first because otherwise Firefox will
  587. // throw bugzil.la/365772 if cookies are disabled
  588. // Also in iOS5 Private Browsing mode, attepting to use localStorage.setItem
  589. // will throw the exception:
  590. // QUOTA_EXCEEDED_ERRROR DOM Exception 22.
  591. // Peculiarly, getItem and removeItem calls do not throw.
  592. // Because we are forced to try/catch this, we'll go aggressive.
  593. // Just FWIW: IE8 Compat mode supports these features completely:
  594. // www.quirksmode.org/dom/html5.html
  595. // But IE8 doesn't support either with local files
  596. tests['localstorage'] = function() {
  597. try {
  598. localStorage.setItem(mod, mod);
  599. localStorage.removeItem(mod);
  600. return true;
  601. } catch(e) {
  602. return false;
  603. }
  604. };
  605. tests['sessionstorage'] = function() {
  606. try {
  607. sessionStorage.setItem(mod, mod);
  608. sessionStorage.removeItem(mod);
  609. return true;
  610. } catch(e) {
  611. return false;
  612. }
  613. };
  614. tests['webworkers'] = function() {
  615. return !!window.Worker;
  616. };
  617. tests['applicationcache'] = function() {
  618. return !!window.applicationCache;
  619. };
  620. // Thanks to Erik Dahlstrom
  621. tests['svg'] = function() {
  622. return !!document.createElementNS && !!document.createElementNS(ns.svg, 'svg').createSVGRect;
  623. };
  624. // specifically for SVG inline in HTML, not within XHTML
  625. // test page: paulirish.com/demo/inline-svg
  626. tests['inlinesvg'] = function() {
  627. var div = document.createElement('div');
  628. div.innerHTML = '<svg/>';
  629. return (div.firstChild && div.firstChild.namespaceURI) == ns.svg;
  630. };
  631. // SVG SMIL animation
  632. tests['smil'] = function() {
  633. return !!document.createElementNS && /SVGAnimate/.test(toString.call(document.createElementNS(ns.svg, 'animate')));
  634. };
  635. // This test is only for clip paths in SVG proper, not clip paths on HTML content
  636. // demo: srufaculty.sru.edu/david.dailey/svg/newstuff/clipPath4.svg
  637. // However read the comments to dig into applying SVG clippaths to HTML content here:
  638. // github.com/Modernizr/Modernizr/issues/213#issuecomment-1149491
  639. tests['svgclippaths'] = function() {
  640. return !!document.createElementNS && /SVGClipPath/.test(toString.call(document.createElementNS(ns.svg, 'clipPath')));
  641. };
  642. // input features and input types go directly onto the ret object, bypassing the tests loop.
  643. // Hold this guy to execute in a moment.
  644. function webforms() {
  645. // Run through HTML5's new input attributes to see if the UA understands any.
  646. // We're using f which is the <input> element created early on
  647. // Mike Taylr has created a comprehensive resource for testing these attributes
  648. // when applied to all input types:
  649. // miketaylr.com/code/input-type-attr.html
  650. // spec: www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#input-type-attr-summary
  651. // Only input placeholder is tested while textarea's placeholder is not.
  652. // Currently Safari 4 and Opera 11 have support only for the input placeholder
  653. // Both tests are available in feature-detects/forms-placeholder.js
  654. Modernizr['input'] = (function( props ) {
  655. for ( var i = 0, len = props.length; i < len; i++ ) {
  656. attrs[ props[i] ] = !!(props[i] in inputElem);
  657. }
  658. if (attrs.list){
  659. // safari false positive's on datalist: webk.it/74252
  660. // see also github.com/Modernizr/Modernizr/issues/146
  661. attrs.list = !!(document.createElement('datalist') && window.HTMLDataListElement);
  662. }
  663. return attrs;
  664. })('autocomplete autofocus list placeholder max min multiple pattern required step'.split(' '));
  665. // Run through HTML5's new input types to see if the UA understands any.
  666. // This is put behind the tests runloop because it doesn't return a
  667. // true/false like all the other tests; instead, it returns an object
  668. // containing each input type with its corresponding true/false value
  669. // Big thanks to @miketaylr for the html5 forms expertise. miketaylr.com/
  670. Modernizr['inputtypes'] = (function(props) {
  671. for ( var i = 0, bool, inputElemType, defaultView, len = props.length; i < len; i++ ) {
  672. inputElem.setAttribute('type', inputElemType = props[i]);
  673. bool = inputElem.type !== 'text';
  674. // We first check to see if the type we give it sticks..
  675. // If the type does, we feed it a textual value, which shouldn't be valid.
  676. // If the value doesn't stick, we know there's input sanitization which infers a custom UI
  677. if ( bool ) {
  678. inputElem.value = smile;
  679. inputElem.style.cssText = 'position:absolute;visibility:hidden;';
  680. if ( /^range$/.test(inputElemType) && inputElem.style.WebkitAppearance !== undefined ) {
  681. docElement.appendChild(inputElem);
  682. defaultView = document.defaultView;
  683. // Safari 2-4 allows the smiley as a value, despite making a slider
  684. bool = defaultView.getComputedStyle &&
  685. defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' &&
  686. // Mobile android web browser has false positive, so must
  687. // check the height to see if the widget is actually there.
  688. (inputElem.offsetHeight !== 0);
  689. docElement.removeChild(inputElem);
  690. } else if ( /^(search|tel)$/.test(inputElemType) ){
  691. // Spec doesnt define any special parsing or detectable UI
  692. // behaviors so we pass these through as true
  693. // Interestingly, opera fails the earlier test, so it doesn't
  694. // even make it here.
  695. } else if ( /^(url|email)$/.test(inputElemType) ) {
  696. // Real url and email support comes with prebaked validation.
  697. bool = inputElem.checkValidity && inputElem.checkValidity() === false;
  698. } else if ( /^color$/.test(inputElemType) ) {
  699. // chuck into DOM and force reflow for Opera bug in 11.00
  700. // github.com/Modernizr/Modernizr/issues#issue/159
  701. docElement.appendChild(inputElem);
  702. docElement.offsetWidth;
  703. bool = inputElem.value != smile;
  704. docElement.removeChild(inputElem);
  705. } else {
  706. // If the upgraded input compontent rejects the :) text, we got a winner
  707. bool = inputElem.value != smile;
  708. }
  709. }
  710. inputs[ props[i] ] = !!bool;
  711. }
  712. return inputs;
  713. })('search tel url email datetime date month week time datetime-local number range color'.split(' '));
  714. }
  715. // End of test definitions
  716. // -----------------------
  717. // Run through all tests and detect their support in the current UA.
  718. // todo: hypothetically we could be doing an array of tests and use a basic loop here.
  719. for ( var feature in tests ) {
  720. if ( hasOwnProperty(tests, feature) ) {
  721. // run the test, throw the return value into the Modernizr,
  722. // then based on that boolean, define an appropriate className
  723. // and push it into an array of classes we'll join later.
  724. featureName = feature.toLowerCase();
  725. Modernizr[featureName] = tests[feature]();
  726. classes.push((Modernizr[featureName] ? '' : 'no-') + featureName);
  727. }
  728. }
  729. // input tests need to run.
  730. Modernizr.input || webforms();
  731. /**
  732. * addTest allows the user to define their own feature tests
  733. * the result will be added onto the Modernizr object,
  734. * as well as an appropriate className set on the html element
  735. *
  736. * @param feature - String naming the feature
  737. * @param test - Function returning true if feature is supported, false if not
  738. */
  739. Modernizr.addTest = function ( feature, test ) {
  740. if ( typeof feature == 'object' ) {
  741. for ( var key in feature ) {
  742. if ( hasOwnProperty( feature, key ) ) {
  743. Modernizr.addTest( key, feature[ key ] );
  744. }
  745. }
  746. } else {
  747. feature = feature.toLowerCase();
  748. if ( Modernizr[feature] !== undefined ) {
  749. // we're going to quit if you're trying to overwrite an existing test
  750. // if we were to allow it, we'd do this:
  751. // var re = new RegExp("\\b(no-)?" + feature + "\\b");
  752. // docElement.className = docElement.className.replace( re, '' );
  753. // but, no rly, stuff 'em.
  754. return Modernizr;
  755. }
  756. test = typeof test == 'function' ? test() : test;
  757. docElement.className += ' ' + (test ? '' : 'no-') + feature;
  758. Modernizr[feature] = test;
  759. }
  760. return Modernizr; // allow chaining.
  761. };
  762. // Reset modElem.cssText to nothing to reduce memory footprint.
  763. setCss('');
  764. modElem = inputElem = null;
  765. //>>BEGIN IEPP
  766. // Enable HTML 5 elements for styling in IE & add HTML5 css
  767. /*! HTML5 Shiv v3.4 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed */
  768. ;(function(window, document) {
  769. /** Preset options */
  770. var options = window.html5 || {};
  771. /** Used to skip problem elements */
  772. var reSkip = /^<|^(?:button|form|map|select|textarea)$/i;
  773. /** Detect whether the browser supports default html5 styles */
  774. var supportsHtml5Styles;
  775. /** Detect whether the browser supports unknown elements */
  776. var supportsUnknownElements;
  777. (function() {
  778. var a = document.createElement('a');
  779. a.innerHTML = '<xyz></xyz>';
  780. //if the hidden property is implemented we can assume, that the browser supports HTML5 Styles
  781. supportsHtml5Styles = ('hidden' in a);
  782. supportsUnknownElements = a.childNodes.length == 1 || (function() {
  783. // assign a false positive if unable to shiv
  784. try {
  785. (document.createElement)('a');
  786. } catch(e) {
  787. return true;
  788. }
  789. var frag = document.createDocumentFragment();
  790. return (
  791. typeof frag.cloneNode == 'undefined' ||
  792. typeof frag.createDocumentFragment == 'undefined' ||
  793. typeof frag.createElement == 'undefined'
  794. );
  795. }());
  796. }());
  797. /*--------------------------------------------------------------------------*/
  798. /**
  799. * Creates a style sheet with the given CSS text and adds it to the document.
  800. * @private
  801. * @param {Document} ownerDocument The document.
  802. * @param {String} cssText The CSS text.
  803. * @returns {StyleSheet} The style element.
  804. */
  805. function addStyleSheet(ownerDocument, cssText) {
  806. var p = ownerDocument.createElement('p'),
  807. parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
  808. p.innerHTML = 'x<style>' + cssText + '</style>';
  809. return parent.insertBefore(p.lastChild, parent.firstChild);
  810. }
  811. /**
  812. * Returns the value of `html5.elements` as an array.
  813. * @private
  814. * @returns {Array} An array of shived element node names.
  815. */
  816. function getElements() {
  817. var elements = html5.elements;
  818. return typeof elements == 'string' ? elements.split(' ') : elements;
  819. }
  820. /**
  821. * Shivs the `createElement` and `createDocumentFragment` methods of the document.
  822. * @private
  823. * @param {Document|DocumentFragment} ownerDocument The document.
  824. */
  825. function shivMethods(ownerDocument) {
  826. var cache = {},
  827. docCreateElement = ownerDocument.createElement,
  828. docCreateFragment = ownerDocument.createDocumentFragment,
  829. frag = docCreateFragment();
  830. ownerDocument.createElement = function(nodeName) {
  831. // Avoid adding some elements to fragments in IE < 9 because
  832. // * Attributes like `name` or `type` cannot be set/changed once an element
  833. // is inserted into a document/fragment
  834. // * Link elements with `src` attributes that are inaccessible, as with
  835. // a 403 response, will cause the tab/window to crash
  836. // * Script elements appended to fragments will execute when their `src`
  837. // or `text` property is set
  838. var node = (cache[nodeName] || (cache[nodeName] = docCreateElement(nodeName))).cloneNode();
  839. return html5.shivMethods && node.canHaveChildren && !reSkip.test(nodeName) ? frag.appendChild(node) : node;
  840. };
  841. ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
  842. 'var n=f.cloneNode(),c=n.createElement;' +
  843. 'h.shivMethods&&(' +
  844. // unroll the `createElement` calls
  845. getElements().join().replace(/\w+/g, function(nodeName) {
  846. cache[nodeName] = docCreateElement(nodeName);
  847. frag.createElement(nodeName);
  848. return 'c("' + nodeName + '")';
  849. }) +
  850. ');return n}'
  851. )(html5, frag);
  852. }
  853. /*--------------------------------------------------------------------------*/
  854. /**
  855. * Shivs the given document.
  856. * @memberOf html5
  857. * @param {Document} ownerDocument The document to shiv.
  858. * @returns {Document} The shived document.
  859. */
  860. function shivDocument(ownerDocument) {
  861. var shived;
  862. if (ownerDocument.documentShived) {
  863. return ownerDocument;
  864. }
  865. if (html5.shivCSS && !supportsHtml5Styles) {
  866. shived = !!addStyleSheet(ownerDocument,
  867. // corrects block display not defined in IE6/7/8/9
  868. 'article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}' +
  869. // corrects audio display not defined in IE6/7/8/9
  870. 'audio{display:none}' +
  871. // corrects canvas and video display not defined in IE6/7/8/9
  872. 'canvas,video{display:inline-block;*display:inline;*zoom:1}' +
  873. // corrects 'hidden' attribute and audio[controls] display not present in IE7/8/9
  874. '[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}' +
  875. // adds styling not present in IE6/7/8/9
  876. 'mark{background:#FF0;color:#000}'
  877. );
  878. }
  879. if (!supportsUnknownElements) {
  880. shived = !shivMethods(ownerDocument);
  881. }
  882. if (shived) {
  883. ownerDocument.documentShived = shived;
  884. }
  885. return ownerDocument;
  886. }
  887. /*--------------------------------------------------------------------------*/
  888. /**
  889. * The `html5` object is exposed so that more elements can be shived and
  890. * existing shiving can be detected on iframes.
  891. * @type Object
  892. * @example
  893. *
  894. * // options can be changed before the script is included
  895. * html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };
  896. */
  897. var html5 = {
  898. /**
  899. * An array or space separated string of node names of the elements to shiv.
  900. * @memberOf html5
  901. * @type Array|String
  902. */
  903. 'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video',
  904. /**
  905. * A flag to indicate that the HTML5 style sheet should be inserted.
  906. * @memberOf html5
  907. * @type Boolean
  908. */
  909. 'shivCSS': !(options.shivCSS === false),
  910. /**
  911. * A flag to indicate that the document's `createElement` and `createDocumentFragment`
  912. * methods should be overwritten.
  913. * @memberOf html5
  914. * @type Boolean
  915. */
  916. 'shivMethods': !(options.shivMethods === false),
  917. /**
  918. * A string to describe the type of `html5` object ("default" or "default print").
  919. * @memberOf html5
  920. * @type String
  921. */
  922. 'type': 'default',
  923. // shivs the document according to the specified `html5` object options
  924. 'shivDocument': shivDocument
  925. };
  926. /*--------------------------------------------------------------------------*/
  927. // expose html5
  928. window.html5 = html5;
  929. // shiv the document
  930. shivDocument(document);
  931. }(this, document));
  932. //>>END IEPP
  933. // Assign private properties to the return object with prefix
  934. Modernizr._version = version;
  935. // expose these for the plugin API. Look in the source for how to join() them against your input
  936. Modernizr._prefixes = prefixes;
  937. Modernizr._domPrefixes = domPrefixes;
  938. Modernizr._cssomPrefixes = cssomPrefixes;
  939. // Modernizr.mq tests a given media query, live against the current state of the window
  940. // A few important notes:
  941. // * If a browser does not support media queries at all (eg. oldIE) the mq() will always return false
  942. // * A max-width or orientation query will be evaluated against the current state, which may change later.
  943. // * You must specify values. Eg. If you are testing support for the min-width media query use:
  944. // Modernizr.mq('(min-width:0)')
  945. // usage:
  946. // Modernizr.mq('only screen and (max-width:768)')
  947. Modernizr.mq = testMediaQuery;
  948. // Modernizr.hasEvent() detects support for a given event, with an optional element to test on
  949. // Modernizr.hasEvent('gesturestart', elem)
  950. Modernizr.hasEvent = isEventSupported;
  951. // Modernizr.testProp() investigates whether a given style property is recognized
  952. // Note that the property names must be provided in the camelCase variant.
  953. // Modernizr.testProp('pointerEvents')
  954. Modernizr.testProp = function(prop){
  955. return testProps([prop]);
  956. };
  957. // Modernizr.testAllProps() investigates whether a given style property,
  958. // or any of its vendor-prefixed variants, is recognized
  959. // Note that the property names must be provided in the camelCase variant.
  960. // Modernizr.testAllProps('boxSizing')
  961. Modernizr.testAllProps = testPropsAll;
  962. // Modernizr.testStyles() allows you to add custom styles to the document and test an element afterwards
  963. // Modernizr.testStyles('#modernizr { position:absolute }', function(elem, rule){ ... })
  964. Modernizr.testStyles = injectElementWithStyles;
  965. // Modernizr.prefixed() returns the prefixed or nonprefixed property name variant of your input
  966. // Modernizr.prefixed('boxSizing') // 'MozBoxSizing'
  967. // Properties must be passed as dom-style camelcase, rather than `box-sizing` hypentated style.
  968. // Return values will also be the camelCase variant, if you need to translate that to hypenated style use:
  969. //
  970. // str.replace(/([A-Z])/g, function(str,m1){ return '-' + m1.toLowerCase(); }).replace(/^ms-/,'-ms-');
  971. // If you're trying to ascertain which transition end event to bind to, you might do something like...
  972. //
  973. // var transEndEventNames = {
  974. // 'WebkitTransition' : 'webkitTransitionEnd',
  975. // 'MozTransition' : 'transitionend',
  976. // 'OTransition' : 'oTransitionEnd',
  977. // 'msTransition' : 'MsTransitionEnd',
  978. // 'transition' : 'transitionend'
  979. // },
  980. // transEndEventName = transEndEventNames[ Modernizr.prefixed('transition') ];
  981. Modernizr.prefixed = function(prop, obj, elem){
  982. if(!obj) {
  983. return testPropsAll(prop, 'pfx');
  984. } else {
  985. // Testing DOM property e.g. Modernizr.prefixed('requestAnimationFrame', window) // 'mozRequestAnimationFrame'
  986. return testPropsAll(prop, obj, elem);
  987. }
  988. };
  989. // Remove "no-js" class from <html> element, if it exists:
  990. docElement.className = docElement.className.replace(/(^|\s)no-js(\s|$)/, '$1$2') +
  991. // Add the new classes to the <html> element.
  992. (enableClasses ? ' js ' + classes.join(' ') : '');
  993. return Modernizr;
  994. })(this, this.document);