| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.fillRect.path.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.fillRect.path.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.fillRect.path.worker.js
|
| deleted file mode 100644
|
| index 7433620ed6172d87114c9e75f8aca8e8e3690e9c..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.fillRect.path.worker.js
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -// DO NOT EDIT! This test has been generated by tools/gentest.py.
|
| -// OffscreenCanvas test in a worker:2d.fillRect.path
|
| -// Description:fillRect does not affect the current path
|
| -// Note:
|
| -
|
| -importScripts("/resources/testharness.js");
|
| -importScripts("/common/canvas-tests.js");
|
| -
|
| -var t = async_test("fillRect does not affect the current path");
|
| -t.step(function() {
|
| -
|
| -var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| -var ctx = offscreenCanvas.getContext('2d');
|
| -
|
| -ctx.beginPath();
|
| -ctx.rect(0, 0, 100, 50);
|
| -ctx.fillStyle = '#f00';
|
| -ctx.fillRect(0, 0, 16, 16);
|
| -ctx.fillStyle = '#0f0';
|
| -ctx.fill();
|
| -_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
|
| -
|
| -t.done();
|
| -
|
| -});
|
| -done();
|
|
|