You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
473 B
20 lines
473 B
// code.google.com/speed/webp/
|
|
// by rich bradshaw, ryan seddon, and paul irish
|
|
|
|
|
|
// This test is asynchronous. Watch out.
|
|
|
|
(function(){
|
|
|
|
var image = new Image();
|
|
|
|
image.onerror = function() {
|
|
Modernizr.addTest('webp', false);
|
|
};
|
|
image.onload = function() {
|
|
Modernizr.addTest('webp', function() { return image.width == 1; });
|
|
};
|
|
|
|
image.src = 'data:image/webp;base64,UklGRiwAAABXRUJQVlA4ICAAAAAUAgCdASoBAAEAL/3+/3+CAB/AAAFzrNsAAP5QAAAAAA==';
|
|
|
|
}());
|