Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.worker.js |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.worker.js |
deleted file mode 100644 |
index e06c99462bc850e55286defdff67b7eb4f005feb..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.worker.js |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-// DO NOT EDIT! This test has been generated by tools/gentest.py. |
-// OffscreenCanvas test in a worker:2d.state.saverestore.globalCompositeOperation |
-// Description:save()/restore() works for globalCompositeOperation |
-// Note: |
- |
-importScripts("/resources/testharness.js"); |
-importScripts("/common/canvas-tests.js"); |
- |
-var t = async_test("save()/restore() works for globalCompositeOperation"); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-// Test that restore() undoes any modifications |
-var old = ctx.globalCompositeOperation; |
-ctx.save(); |
-ctx.globalCompositeOperation = "copy"; |
-ctx.restore(); |
-_assertSame(ctx.globalCompositeOperation, old, "ctx.globalCompositeOperation", "old"); |
- |
-// Also test that save() doesn't modify the values |
-ctx.globalCompositeOperation = "copy"; |
-old = ctx.globalCompositeOperation; |
- // we're not interested in failures caused by get(set(x)) != x (e.g. |
- // from rounding), so compare against 'old' instead of against "copy" |
-ctx.save(); |
-_assertSame(ctx.globalCompositeOperation, old, "ctx.globalCompositeOperation", "old"); |
-ctx.restore(); |
- |
-t.done(); |
- |
-}); |
-done(); |