|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/tomcochemical/bower_components/modernizr/feature-detects/ |
Upload File : |
// by jussi-kalliokoski
// This test is asynchronous. Watch out.
// The test will potentially add garbage to console.
(function(){
try {
var data = 'Modernizr',
worker = new Worker('data:text/javascript;base64,dGhpcy5vbm1lc3NhZ2U9ZnVuY3Rpb24oZSl7cG9zdE1lc3NhZ2UoZS5kYXRhKX0=');
worker.onmessage = function(e) {
worker.terminate();
Modernizr.addTest('dataworkers', data === e.data);
worker = null;
};
// Just in case...
worker.onerror = function() {
Modernizr.addTest('dataworkers', false);
worker = null;
};
setTimeout(function() {
Modernizr.addTest('dataworkers', false);
}, 200);
worker.postMessage(data);
} catch (e) {
Modernizr.addTest('dataworkers', false);
}
}());