Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.closed.worker.js |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.closed.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.closed.worker.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f5237d6c2b078631e6c3ed169c5a706b78a45341 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.closed.worker.js |
@@ -0,0 +1,36 @@ |
+// DO NOT EDIT! This test has been generated by tools/gentest.py. |
+// OffscreenCanvas test in a worker:2d.line.cap.closed |
+// Description:Line caps are not drawn at the corners of an unclosed rectangle |
+// Note: |
+ |
+importScripts("/resources/testharness.js"); |
+importScripts("/common/canvas-tests.js"); |
+ |
+var t = async_test("Line caps are not drawn at the corners of an unclosed rectangle"); |
+t.step(function() { |
+ |
+var offscreenCanvas = new OffscreenCanvas(100, 50); |
+var ctx = offscreenCanvas.getContext('2d'); |
+ |
+ctx.fillStyle = '#0f0'; |
+ctx.strokeStyle = '#f00'; |
+ctx.fillRect(0, 0, 100, 50); |
+ctx.lineJoin = 'bevel'; |
+ctx.lineCap = 'square'; |
+ctx.lineWidth = 400; |
+ctx.beginPath(); |
+ctx.moveTo(200, 200); |
+ctx.lineTo(200, 1000); |
+ctx.lineTo(1000, 1000); |
+ctx.lineTo(1000, 200); |
+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(); |