| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillRect.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillRect.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillRect.worker.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..935e16a7db9b9fd93a315d973c2e9ac797137ea7
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.zerosize.fillRect.worker.js
|
| @@ -0,0 +1,27 @@
|
| +// DO NOT EDIT! This test has been generated by tools/gentest.py.
|
| +// OffscreenCanvas test in a worker:2d.gradient.interpolate.zerosize.fillRect
|
| +// Description:
|
| +// Note:
|
| +
|
| +importScripts("/resources/testharness.js");
|
| +importScripts("/common/canvas-tests.js");
|
| +
|
| +var t = async_test("");
|
| +t.step(function() {
|
| +
|
| +var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| +var ctx = offscreenCanvas.getContext('2d');
|
| +
|
| +ctx.fillStyle = '#0f0';
|
| +ctx.fillRect(0, 0, 100, 50);
|
| +var g = ctx.createLinearGradient(50, 25, 50, 25); // zero-length line (undefined direction)
|
| +g.addColorStop(0, '#f00');
|
| +g.addColorStop(1, '#f00');
|
| +ctx.fillStyle = g;
|
| +ctx.fillRect(0, 0, 100, 50);
|
| +_assertPixel(offscreenCanvas, 40,20, 0,255,0,255, "40,20", "0,255,0,255");
|
| +
|
| +t.done();
|
| +
|
| +});
|
| +done();
|
|
|