| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.worker.js
|
| deleted file mode 100644
|
| index 195f5000268986f3f70ce83dd1eaeeb8e64ce903..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.worker.js
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// DO NOT EDIT! This test has been generated by tools/gentest.py.
|
| -// OffscreenCanvas test in a worker:2d.line.join.closed
|
| -// Description:Line joins are drawn at the corner of a closed rectangle
|
| -// Note:
|
| -
|
| -importScripts("/resources/testharness.js");
|
| -importScripts("/common/canvas-tests.js");
|
| -
|
| -var t = async_test("Line joins are drawn at the corner of a closed rectangle");
|
| -t.step(function() {
|
| -
|
| -var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| -var ctx = offscreenCanvas.getContext('2d');
|
| -
|
| -ctx.fillStyle = '#f00';
|
| -ctx.strokeStyle = '#0f0';
|
| -ctx.fillRect(0, 0, 100, 50);
|
| -ctx.lineJoin = 'miter';
|
| -ctx.lineWidth = 200;
|
| -ctx.beginPath();
|
| -ctx.moveTo(100, 50);
|
| -ctx.lineTo(100, 1000);
|
| -ctx.lineTo(1000, 1000);
|
| -ctx.lineTo(1000, 50);
|
| -ctx.closePath();
|
| -ctx.stroke();
|
| -_assertPixel(offscreenCanvas, 1,1, 0,255,0,255, "1,1", "0,255,0,255");
|
| -_assertPixel(offscreenCanvas, 48,1, 0,255,0,255, "48,1", "0,255,0,255");
|
| -_assertPixel(offscreenCanvas, 48,48, 0,255,0,255, "48,48", "0,255,0,255");
|
| -_assertPixel(offscreenCanvas, 1,48, 0,255,0,255, "1,48", "0,255,0,255");
|
| -
|
| -t.done();
|
| -
|
| -});
|
| -done();
|
|
|