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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-toDataURL-race-imageEncoder-webp.html

Issue 1355333005: Implement Asynchronous image encoding for Canvas.toBlob (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change async func to static so no need worry if canvas instance does not live long enough 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 unified diff | Download patch
OLDNEW
(Empty)
1 <script src = "../../resources/js-test.js"></script>
2 <script src = "./script-tests/canvas-toBlob-toDataURL-race.js"></script>
3 <script type = 'text/javascript'>
4 description("Verifies if WEBP image encoding on main thread (toDataURL) conflict s with image encoding on async thread (toBlob)");
5
6 //Fire a bunch of toBlob operations of canvas to keep the async thread busy
7 var j = 0; // due to async nature of toBlob we need a separate counter
8 for (var i = 0; i < numToBlobCalls; i++)
9 {
10 canvas.toBlob(function(blob) {
11 url = URL.createObjectURL(blob);
12 testImages[j++].src = url;
13 }, "image/webp", 1.0);
14 }
15
16 //Then file a bunch of toDataURL operation on main thread, so both threads now c ompete for image encoding
17 for (var i = numToBlobCalls; i < (numToDataURLCalls + numToBlobCalls); i++)
18 {
19 testImages[i].src = canvas.toDataURL("image/webp", 1.0);
20 }
21 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698