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

Unified Diff: third_party/WebKit/LayoutTests/virtual/threaded/fast/canvas-toBlob/canvas-toBlob-toDataURL-race-imageEncoder-png.html

Issue 2189733003: Remove virtual test suits virtual/threaded/fast/canvas-toBlob (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/virtual/threaded/fast/canvas-toBlob/canvas-toBlob-toDataURL-race-imageEncoder-png.html
diff --git a/third_party/WebKit/LayoutTests/virtual/threaded/fast/canvas-toBlob/canvas-toBlob-toDataURL-race-imageEncoder-png.html b/third_party/WebKit/LayoutTests/virtual/threaded/fast/canvas-toBlob/canvas-toBlob-toDataURL-race-imageEncoder-png.html
deleted file mode 100644
index 8940ce528835d2bb94d6ac2b9e51c3667029662c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/virtual/threaded/fast/canvas-toBlob/canvas-toBlob-toDataURL-race-imageEncoder-png.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<script src = "../../../../resources/js-test.js"></script>
-<script src = "../../../../fast/canvas/script-tests/canvas-toBlob-toDataURL-race.js"></script>
-<script type = 'text/javascript'>
-description("Verifies if synchronous PNG image encoding (toDataURL) conflicts with asynchronous image encoding (toBlob)");
-
-//Fire a bunch of toBlob operations of canvas to keep the async thread busy
-var j = 0; // due to async nature of toBlob we need a separate counter
-for (var i = 0; i < numToBlobCalls; i++)
-{
- canvas.toBlob(function(blob) {
- url = URL.createObjectURL(blob);
- testImages[j++].src = url;
- });
-}
-
-//Then file a bunch of toDataURL operation on main thread, so both threads now compete for image encoding
-for (var i = numToBlobCalls; i < (numToDataURLCalls + numToBlobCalls); i++)
-{
- testImages[i].src = canvas.toDataURL();
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698