| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.object.properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.object.properties.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.object.properties.html
|
| deleted file mode 100644
|
| index 04b9b02cefc588fadcbf58cdc1f85ba63de82211..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.object.properties.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
| -<title>OffscreenCanvas test: 2d.imageData.object.properties</title>
|
| -<script src="/resources/testharness.js"></script>
|
| -<script src="/resources/testharnessreport.js"></script>
|
| -<script src="/common/canvas-tests.js"></script>
|
| -
|
| -<h1>2d.imageData.object.properties</h1>
|
| -<p class="desc">ImageData objects have the right properties</p>
|
| -
|
| -
|
| -<script>
|
| -var t = async_test("ImageData objects have the right properties");
|
| -t.step(function() {
|
| -
|
| -var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| -var ctx = offscreenCanvas.getContext('2d');
|
| -
|
| -var imgdata = ctx.getImageData(0, 0, 10, 10);
|
| -_assertSame(typeof(imgdata.width), 'number', "typeof(imgdata.width)", "'number'");
|
| -_assertSame(typeof(imgdata.height), 'number', "typeof(imgdata.height)", "'number'");
|
| -_assertSame(typeof(imgdata.data), 'object', "typeof(imgdata.data)", "'object'");
|
| -
|
| -t.done();
|
| -
|
| -});
|
| -</script>
|
|
|