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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/resources/imageBitmap-transferable.js

Issue 2522693002: Color correct ImageBitmap(HTMLImageElement*) constructor (Closed)
Patch Set: Minor correctinos Created 4 years 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/webgl/resources/imageBitmap-transferable.js
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/webgl/resources/imageBitmap-transferable.js b/third_party/WebKit/LayoutTests/fast/canvas/webgl/resources/imageBitmap-transferable.js
index 573d88b53de87b3d5cbc28b0bffe01b60d1a7cc0..6fa33b2e6c65aaa3c699eb0e2c28822ed2b334c6 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/webgl/resources/imageBitmap-transferable.js
+++ b/third_party/WebKit/LayoutTests/fast/canvas/webgl/resources/imageBitmap-transferable.js
@@ -1,5 +1,5 @@
self.onmessage = function(e) {
- createImageBitmap(e.data, {imageOrientation: "none", premultiplyAlpha: "none"}).then(imageBitmap => {
+ createImageBitmap(e.data, {imageOrientation: "none", premultiplyAlpha: "none", colorSpaceConversion: "none"}).then(imageBitmap => {
postMessage(imageBitmap, [imageBitmap]);
});
};

Powered by Google App Engine
This is Rietveld 408576698