https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4c48a3d9b20a424888005867e9cc4119de8cfa14 authored by Anne van Kesteren on 11 April 2018, 12:38:33 UTC
don't use about:blank as that errors as well
Tip revision: 4c48a3d
2d.state.saverestore.lineWidth.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.state.saverestore.lineWidth</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

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


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

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

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

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

t.done();

});
</script>
back to top