Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.alpha.worker.js |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.alpha.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.alpha.worker.js |
deleted file mode 100644 |
index 611a9c7781fbea2795506f248e0a34b940ca6492..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.alpha.worker.js |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-// DO NOT EDIT! This test has been generated by tools/gentest.py. |
-// OffscreenCanvas test in a worker:2d.imageData.get.order.alpha |
-// Description:getImageData() returns A in the fourth component |
-// Note: |
- |
-importScripts("/resources/testharness.js"); |
-importScripts("/common/canvas-tests.js"); |
- |
-var t = async_test("getImageData() returns A in the fourth component"); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-ctx.fillStyle = 'rgba(0, 0, 0, 0.5)'; |
-ctx.fillRect(0, 0, 100, 50); |
-var imgdata = ctx.getImageData(0, 0, 10, 10); |
-_assert(imgdata.data[3] < 200, "imgdata.data[\""+(3)+"\"] < 200"); |
-_assert(imgdata.data[3] > 100, "imgdata.data[\""+(3)+"\"] > 100"); |
- |
-t.done(); |
- |
-}); |
-done(); |