Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.modified.worker.js |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.modified.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.modified.worker.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d22588dca6a2793a4d714f8d560f082122c6a01e |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.modified.worker.js |
@@ -0,0 +1,31 @@ |
+// DO NOT EDIT! This test has been generated by tools/gentest.py. |
+// OffscreenCanvas test in a worker:2d.imageData.put.modified |
+// Description:putImageData() puts modified image data correctly |
+// Note: |
+ |
+importScripts("/resources/testharness.js"); |
+importScripts("/common/canvas-tests.js"); |
+ |
+var t = async_test("putImageData() puts modified image data correctly"); |
+t.step(function() { |
+ |
+var offscreenCanvas = new OffscreenCanvas(100, 50); |
+var ctx = offscreenCanvas.getContext('2d'); |
+ |
+ctx.fillStyle = '#0f0'; |
+ctx.fillRect(0, 0, 100, 50) |
+ctx.fillStyle = '#f00'; |
+ctx.fillRect(45, 20, 10, 10) |
+var imgdata = ctx.getImageData(45, 20, 10, 10); |
+for (var i = 0, len = imgdata.width*imgdata.height*4; i < len; i += 4) |
+{ |
+ imgdata.data[i] = 0; |
+ imgdata.data[i+1] = 255; |
+} |
+ctx.putImageData(imgdata, 45, 20); |
+_assertPixelApprox(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255", 2); |
+ |
+t.done(); |
+ |
+}); |
+done(); |