| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.basic.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.basic.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.basic.worker.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..82190d6cb0b1721b5ce479f39ff6c8d76a303fcf
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.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.create2.basic
|
| +// Description:createImageData(sw, sh) exists and returns something
|
| +// Note:
|
| +
|
| +importScripts("/resources/testharness.js");
|
| +importScripts("/common/canvas-tests.js");
|
| +
|
| +var t = async_test("createImageData(sw, sh) exists and returns something");
|
| +t.step(function() {
|
| +
|
| +var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| +var ctx = offscreenCanvas.getContext('2d');
|
| +
|
| +_assertDifferent(ctx.createImageData(1, 1), null, "ctx.createImageData(1, 1)", "null");
|
| +
|
| +t.done();
|
| +
|
| +});
|
| +done();
|
|
|