| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.html
|
| deleted file mode 100644
|
| index 5c512fbdda05f3e51fcfaa78af6ed84fecf0d713..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-canvas-state/2d.state.saverestore.globalCompositeOperation.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
| -<title>OffscreenCanvas test: 2d.state.saverestore.globalCompositeOperation</title>
|
| -<script src="/resources/testharness.js"></script>
|
| -<script src="/resources/testharnessreport.js"></script>
|
| -<script src="/common/canvas-tests.js"></script>
|
| -
|
| -<h1>2d.state.saverestore.globalCompositeOperation</h1>
|
| -<p class="desc">save()/restore() works for globalCompositeOperation</p>
|
| -
|
| -
|
| -<script>
|
| -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();
|
| -
|
| -});
|
| -</script>
|
|
|