| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.rect.end.1.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.rect.end.1.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.rect.end.1.worker.js
|
| deleted file mode 100644
|
| index 72b2d8aff1c55d0f85e8e6c3739f27e7c2789b82..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.rect.end.1.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.path.rect.end.1
|
| -// 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 = '#f00';
|
| -ctx.fillRect(0, 0, 100, 50);
|
| -ctx.strokeStyle = '#0f0';
|
| -ctx.lineWidth = 100;
|
| -ctx.rect(200, 100, 400, 1000);
|
| -ctx.lineTo(-2000, -1000);
|
| -ctx.stroke();
|
| -_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
|
| -
|
| -t.done();
|
| -
|
| -});
|
| -done();
|
|
|