https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fe09e1e121e850ee1cf1c7f67333ad92e3904d78 authored by Morten Stenshorne on 26 March 2018, 14:00:45 UTC
[css-flexbox] Resolve min-width:auto on table item to min preferred size.
Tip revision: fe09e1e
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