Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/2d.getcontext.shared.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/2d.getcontext.shared.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/2d.getcontext.shared.html |
deleted file mode 100644 |
index 4f297faed8c9c7831d5c4baf44cb48390b3840b1..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/2d.getcontext.shared.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> |
-<title>OffscreenCanvas test: 2d.getcontext.shared</title> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="/common/canvas-tests.js"></script> |
- |
-<h1>2d.getcontext.shared</h1> |
-<p class="desc">getContext('2d') returns objects which share canvas state</p> |
- |
- |
-<script> |
-var t = async_test("getContext('2d') returns objects which share canvas state"); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-var ctx2 = offscreenCanvas2.getContext('2d'); |
-ctx.fillStyle = '#f00'; |
-ctx2.fillStyle = '#0f0'; |
-ctx.fillRect(0, 0, 100, 50); |
-_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255"); |
- |
-t.done(); |
- |
-}); |
-</script> |