Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.basic.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.basic.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.basic.html |
deleted file mode 100644 |
index 13cb5de4ccd24db88f86693c1a9360412cd0411a..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/pixel-manipulation/2d.imageData.create2.basic.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> |
-<title>OffscreenCanvas test: 2d.imageData.create2.basic</title> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="/common/canvas-tests.js"></script> |
- |
-<h1>2d.imageData.create2.basic</h1> |
-<p class="desc">createImageData(sw, sh) exists and returns something</p> |
- |
- |
-<script> |
-var t = async_test("createImageData(sw, sh) exists and returns something"); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-_assertDifferent(ctx.createImageData(1, 1), null, "ctx.createImageData(1, 1)", "null"); |
- |
-t.done(); |
- |
-}); |
-</script> |