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

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

Issue 1409243005: Make ImageBitmap Transferable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix blank line Created 5 years, 2 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/resources/canvas-ImageBitmap-transferable.js
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/resources/canvas-ImageBitmap-transferable.js b/third_party/WebKit/LayoutTests/fast/canvas/resources/canvas-ImageBitmap-transferable.js
new file mode 100644
index 0000000000000000000000000000000000000000..2e700a95bf7c0da9268ebf4ad0573cbf3f62c6ed
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/resources/canvas-ImageBitmap-transferable.js
@@ -0,0 +1,11 @@
+self.onmessage = function(e) {
+ // Worker does two things:
+ // 1. call createImageBitmap() from the ImageBitmap that is transfered
+ // from the main thread
Justin Novosad 2015/10/23 13:30:04 Explain why. I imagine it is to get test coverage
+ // 2. send the created ImageBitmap back to the main thread, the
+ // main thread exam the property of this ImageBitmap to make sure
+ // the transfer between main and worker thread didn't lose data
+ createImageBitmap(e.data.data).then(imageBitmap => {
+ postMessage({data: imageBitmap}, [imageBitmap]);
+ });
+};

Powered by Google App Engine
This is Rietveld 408576698