https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4d1bb3796f155d206bbf1a1d89db7f8b79402c8d authored by Rune Lillesveen on 27 March 2018, 00:22:42 UTC
[css-typedom] Add support for the *-gap properties.
Tip revision: 4d1bb37
2d.fillRect.transform.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.fillRect.transform</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

<h1>2d.fillRect.transform</h1>
<p class="desc">fillRect is affected by transforms</p>


<script>
var t = async_test("fillRect is affected by transforms");
t.step(function() {

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

ctx.scale(10, 10);
ctx.translate(0, 5);
ctx.fillStyle = '#0f0';
ctx.fillRect(0, -5, 10, 5);
_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");

t.done();

});
</script>
back to top