https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8a58e8b829d29878b47f92e3ee57835c03273700 authored by Joshua Bell on 13 March 2018, 18:16:00 UTC
README file for entries-api
Tip revision: 8a58e8b
2d.shadow.alpha.1.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.shadow.alpha.1</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

<h1>2d.shadow.alpha.1</h1>
<p class="desc">Shadow colour alpha components are used</p>


<script>
var t = async_test("Shadow colour alpha components are used");
t.step(function() {

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

ctx.fillStyle = '#0f0';
ctx.fillRect(0, 0, 100, 50);
ctx.shadowColor = 'rgba(255, 0, 0, 0.01)';
ctx.shadowOffsetY = 50;
ctx.fillRect(0, -50, 100, 50);
_assertPixelApprox(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255", 4);

t.done();

});
</script>
back to top