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.transformation.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.state.saverestore.transformation</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

<h1>2d.state.saverestore.transformation</h1>
<p class="desc">save()/restore() affects the current transformation matrix</p>


<script>
var t = async_test("save()/restore() affects the current transformation matrix");
t.step(function() {

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

ctx.fillStyle = '#0f0';
ctx.fillRect(0, 0, 100, 50);
ctx.save();
ctx.translate(200, 0);
ctx.restore();
ctx.fillStyle = '#f00';
ctx.fillRect(-200, 0, 100, 50);
_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");

t.done();

});
</script>
back to top