Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/compositing/2d.composite.operation.highlight.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/compositing/2d.composite.operation.highlight.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/compositing/2d.composite.operation.highlight.html |
deleted file mode 100644 |
index 1bfdb3b1657c3cccdc5f4ff308626e44087b6583..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/compositing/2d.composite.operation.highlight.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> |
-<title>OffscreenCanvas test: 2d.composite.operation.highlight</title> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="/common/canvas-tests.js"></script> |
- |
-<h1>2d.composite.operation.highlight</h1> |
-<p class="desc"></p> |
- |
- |
-<script> |
-var t = async_test(""); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-ctx.globalCompositeOperation = 'xor'; |
-ctx.globalCompositeOperation = 'highlight'; |
-_assertSame(ctx.globalCompositeOperation, 'xor', "ctx.globalCompositeOperation", "'xor'"); |
- |
-t.done(); |
- |
-}); |
-</script> |