Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.worker.js |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.worker.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b5908b1674fb68ce1188beef3debf6e55251357d |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.worker.js |
@@ -0,0 +1,27 @@ |
+// DO NOT EDIT! This test has been generated by tools/gentest.py. |
+// OffscreenCanvas test in a worker:2d.strokeRect.path |
+// Description:strokeRect does not affect the current path |
+// Note: |
+ |
+importScripts("/resources/testharness.js"); |
+importScripts("/common/canvas-tests.js"); |
+ |
+var t = async_test("strokeRect 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.strokeStyle = '#f00'; |
+ctx.lineWidth = 5; |
+ctx.strokeRect(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(); |