https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 48a297bef34d2dea675d8df8c65f69f551405cb1 authored by Anne van Kesteren on 05 February 2018, 15:48:20 UTC
semicolons for everyone
Tip revision: 48a297b
2d.state.saverestore.shadowOffsetY.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.state.saverestore.shadowOffsetY</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

<h1>2d.state.saverestore.shadowOffsetY</h1>
<p class="desc">save()/restore() works for shadowOffsetY</p>


<script>
var t = async_test("save()/restore() works for shadowOffsetY");
t.step(function() {

var offscreenCanvas = new OffscreenCanvas(100, 50);
var ctx = offscreenCanvas.getContext('2d');

// Test that restore() undoes any modifications
var old = ctx.shadowOffsetY;
ctx.save();
ctx.shadowOffsetY = 5;
ctx.restore();
_assertSame(ctx.shadowOffsetY, old, "ctx.shadowOffsetY", "old");

// Also test that save() doesn't modify the values
ctx.shadowOffsetY = 5;
old = ctx.shadowOffsetY;
    // we're not interested in failures caused by get(set(x)) != x (e.g.
    // from rounding), so compare against 'old' instead of against 5
ctx.save();
_assertSame(ctx.shadowOffsetY, old, "ctx.shadowOffsetY", "old");
ctx.restore();

t.done();

});
</script>
back to top