UNPKG

midi-player-js

Version:

Midi parser & player engine for browser or Node. Works well with single or multitrack MIDI files.

47 lines (42 loc) 1.29 kB
/*! { "name": "sizes attribute", "async": true, "property": "sizes", "tags": ["image"], "authors": ["Mat Marquis"], "notes": [{ "name": "Spec", "href": "http://picture.responsiveimages.org/#parse-sizes-attr" },{ "name": "Usage Details", "href": "http://ericportis.com/posts/2014/srcset-sizes/" }] } !*/ /* DOC Test for the `sizes` attribute on images */ define(['Modernizr', 'createElement', 'addTest'], function(Modernizr, createElement, addTest) { Modernizr.addAsyncTest(function() { var width1, width2, test; var image = createElement('img'); // in a perfect world this would be the test... var isSizes = 'sizes' in image; // ... but we need to deal with Safari 9... if (!isSizes && ('srcset' in image)) { width2 = 'data:image/gif;base64,R0lGODlhAgABAPAAAP///wAAACH5BAAAAAAALAAAAAACAAEAAAICBAoAOw=='; width1 = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=='; test = function() { addTest('sizes', image.width == 2); }; image.onload = test; image.onerror = test; image.setAttribute('sizes', '9px'); image.srcset = width1 + ' 1w,' + width2 + ' 8w'; image.src = width1; } else { addTest('sizes', isSizes); } }); });