| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.rows.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.rows.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.rows.worker.js
|
| deleted file mode 100644
|
| index 9fb23e6a04659749a702650391fbb2d55b38c49e..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.order.rows.worker.js
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -// DO NOT EDIT! This test has been generated by tools/gentest.py.
|
| -// OffscreenCanvas test in a worker:2d.imageData.get.order.rows
|
| -// Description:getImageData() returns topmost rows first
|
| -// Note:
|
| -
|
| -importScripts("/resources/testharness.js");
|
| -importScripts("/common/canvas-tests.js");
|
| -
|
| -var t = async_test("getImageData() returns topmost rows first");
|
| -t.step(function() {
|
| -
|
| -var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| -var ctx = offscreenCanvas.getContext('2d');
|
| -
|
| -ctx.fillStyle = '#fff';
|
| -ctx.fillRect(0, 0, 100, 50);
|
| -ctx.fillStyle = '#000';
|
| -ctx.fillRect(0, 0, 100, 2);
|
| -var imgdata = ctx.getImageData(0, 0, 10, 10);
|
| -_assertSame(imgdata.data[0], 0, "imgdata.data[\""+(0)+"\"]", "0");
|
| -_assertSame(imgdata.data[Math.floor(imgdata.width/2*4)], 0, "imgdata.data[Math.floor(imgdata.width/2*4)]", "0");
|
| -_assertSame(imgdata.data[(imgdata.height/2)*imgdata.width*4], 255, "imgdata.data[(imgdata.height/2)*imgdata.width*4]", "255");
|
| -
|
| -t.done();
|
| -
|
| -});
|
| -done();
|
|
|