Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/toDataURL-supportedTypes.html

Issue 1937433002: HTML <canvas>: add WEBP lossless encoding support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/canvas/toDataURL-supportedTypes.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/toDataURL-supportedTypes.html b/third_party/WebKit/LayoutTests/fast/canvas/toDataURL-supportedTypes.html
index 02475d8e8c74eb362bdd6c2b29fc1cec7c183a35..bcfff47f37b914e182b6d539f140dbe865d11587 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/toDataURL-supportedTypes.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/toDataURL-supportedTypes.html
@@ -25,7 +25,7 @@
var supportedMIMETypes = [
"image/png",
"image/jpeg",
- "image/gif",
+ "image/webp",
];
function testToDataURL()
@@ -41,6 +41,7 @@
testMIMEType(undefined);
// Test other formats that we don't support
+ testMIMEType("image/gif");
testMIMEType("image/x-webkitbitmap");
}

Powered by Google App Engine
This is Rietveld 408576698