https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 90af5a7d86dcab4526c9340163f90d36a57caba8 authored by Catalin Badea on 11 April 2018, 13:20:49 UTC
Implement Request.destination.
Tip revision: 90af5a7
2d.shadow.enable.x.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.shadow.enable.x</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

<h1>2d.shadow.enable.x</h1>
<p class="desc">Shadows are drawn if shadowOffsetX is set</p>


<script>
var t = async_test("Shadows are drawn if shadowOffsetX is set");
t.step(function() {

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

ctx.globalCompositeOperation = 'destination-atop';
ctx.shadowColor = '#0f0';
ctx.shadowOffsetX = 0.1;
ctx.fillStyle = '#f00';
ctx.fillRect(0, 0, 100, 50);
_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");

t.done();

});
</script>
back to top