https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c206aaefd6d927d3f0957e0dfe2e8e6bceefd907 authored by Marcos Cáceres on 09 May 2018, 07:37:54 UTC
PaymentCurrencyAmount.currencySystem removed from spec
Tip revision: c206aae
2d.shadow.composite.1.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.shadow.composite.1</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

<h1>2d.shadow.composite.1</h1>
<p class="desc">Shadows are drawn using globalCompositeOperation</p>


<script>
var t = async_test("Shadows are drawn using globalCompositeOperation");
t.step(function() {

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

ctx.fillStyle = '#f00';
ctx.fillRect(0, 0, 100, 50);
ctx.globalCompositeOperation = 'xor';
ctx.shadowColor = '#f00';
ctx.shadowOffsetX = 100;
ctx.fillStyle = '#0f0';
ctx.fillRect(-100, 0, 200, 50);
_assertPixelApprox(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255", 2);

t.done();

});
</script>
back to top