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

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

Issue 2695963004: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Created 3 years, 10 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
1 <script src = "../../resources/js-test.js"></script> 1 <script src="../../resources/testharness.js"></script>
2 <script src="../../resources/testharnessreport.js"></script>
2 <script src = "./script-tests/canvas-toBlob-toDataURL-race.js"></script> 3 <script src = "./script-tests/canvas-toBlob-toDataURL-race.js"></script>
3 <script type = 'text/javascript'>
4 description("Verifies if JPEG image encoding on main thread (toDataURL) conflict s with image encoding on async thread (toBlob)");
5 4
6 //Fire a bunch of toBlob operations of canvas to keep the async thread busy 5 <script>
7 var j = 0; // due to async nature of toBlob we need a separate counter 6 async_test(function(t) {
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/jpeg", 1.0);
14 }
15 7
16 //Then file a bunch of toDataURL operation on main thread, so both threads now c ompete for image encoding 8 createAllTestCases(t);
17 for (var i = numToBlobCalls; i < (numToDataURLCalls + numToBlobCalls); i++) 9
18 { 10 //Fire a bunch of toBlob operations of canvas to keep the async thread busy
19 testImages[i].src = canvas.toDataURL("image/jpeg", 1.0); 11 var j = 0; // due to async nature of toBlob we need a separate counter
20 } 12 for (var i = 0; i < numToBlobCalls; i++)
13 {
14 canvas.toBlob(function(blob) {
15 url = URL.createObjectURL(blob);
16 testImages[j++].src = url;
17 }, "image/jpeg", 1.0);
18 }
19
20 //Then file a bunch of toDataURL operation on main thread, so both threads n ow compete for image encoding
21 for (var i = numToBlobCalls; i < (numToDataURLCalls + numToBlobCalls); i++)
22 {
23 testImages[i].src = canvas.toDataURL("image/jpeg", 1.0);
24 }
25
26 }, "Verifies if JPEG image encoding on main thread (toDataURL) conflicts with im age encoding on async thread (toBlob)");
21 </script> 27 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698