| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.basic.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.basic.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.basic.worker.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6824945d9f83381fd2e27fcd5cf9f3e4bb5baeb0
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.get.basic.worker.js
|
| @@ -0,0 +1,20 @@
|
| +// DO NOT EDIT! This test has been generated by tools/gentest.py.
|
| +// OffscreenCanvas test in a worker:2d.imageData.get.basic
|
| +// Description:getImageData() exists and returns something
|
| +// Note:
|
| +
|
| +importScripts("/resources/testharness.js");
|
| +importScripts("/common/canvas-tests.js");
|
| +
|
| +var t = async_test("getImageData() exists and returns something");
|
| +t.step(function() {
|
| +
|
| +var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| +var ctx = offscreenCanvas.getContext('2d');
|
| +
|
| +_assertDifferent(ctx.getImageData(0, 0, 100, 50), null, "ctx.getImageData(0, 0, 100, 50)", "null");
|
| +
|
| +t.done();
|
| +
|
| +});
|
| +done();
|
|
|