| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..874ef833ded107c47801784fbf37b259f8920f64
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.join.closed.html
|
| @@ -0,0 +1,39 @@
|
| +<!DOCTYPE html>
|
| +<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
| +<title>OffscreenCanvas test: 2d.line.join.closed</title>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script src="/common/canvas-tests.js"></script>
|
| +
|
| +<h1>2d.line.join.closed</h1>
|
| +<p class="desc">Line joins are drawn at the corner of a closed rectangle</p>
|
| +
|
| +
|
| +<script>
|
| +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();
|
| +
|
| +});
|
| +</script>
|
|
|