| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.alpha.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.alpha.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.alpha.html
|
| deleted file mode 100644
|
| index 5236717e5bc89ac6a803b995edbbc12db96c28f6..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.put.alpha.html
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
| -<title>OffscreenCanvas test: 2d.imageData.put.alpha</title>
|
| -<script src="/resources/testharness.js"></script>
|
| -<script src="/resources/testharnessreport.js"></script>
|
| -<script src="/common/canvas-tests.js"></script>
|
| -
|
| -<h1>2d.imageData.put.alpha</h1>
|
| -<p class="desc">putImageData() puts non-solid image data correctly</p>
|
| -
|
| -
|
| -<script>
|
| -var t = async_test("putImageData() puts non-solid image data correctly");
|
| -t.step(function() {
|
| -
|
| -var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| -var ctx = offscreenCanvas.getContext('2d');
|
| -
|
| -ctx.fillStyle = 'rgba(0, 255, 0, 0.25)';
|
| -ctx.fillRect(0, 0, 100, 50)
|
| -var imgdata = ctx.getImageData(0, 0, 100, 50);
|
| -ctx.fillStyle = '#f00';
|
| -ctx.fillRect(0, 0, 100, 50)
|
| -ctx.putImageData(imgdata, 0, 0);
|
| -_assertPixelApprox(offscreenCanvas, 50,25, 0,255,0,64, "50,25", "0,255,0,64", 2);
|
| -
|
| -t.done();
|
| -
|
| -});
|
| -</script>
|
|
|