https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 33ff1db2c5e493f629335dab2f6cc5a46abb2461 authored by Philip Jägenstedt on 30 November 2016, 15:31:00 UTC
Test competing requestFullscreen() and exitFullscreen()
Tip revision: 33ff1db
2d.shadow.canvas.transparent.2.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.shadow.canvas.transparent.2</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>

<h1>2d.shadow.canvas.transparent.2</h1>
<p class="desc">Shadows are not drawn for transparent parts of canvases</p>


<script>
var t = async_test("Shadows are not drawn for transparent parts of canvases");
t.step(function() {

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

var offscreenCanvas2 = new OffscreenCanvas(100, 50);
var ctx2 = offscreenCanvas2.getContext('2d');
ctx2.fillStyle = '#f00';
ctx2.fillRect(0, 0, 50, 50);
ctx.fillStyle = '#0f0';
ctx.fillRect(0, 0, 50, 50);
ctx.fillStyle = '#f00';
ctx.fillRect(50, 0, 50, 50);
ctx.shadowOffsetY = 50;
ctx.shadowColor = '#0f0';
ctx.drawImage(offscreenCanvas2, 50, -50);
ctx.shadowColor = '#f00';
ctx.drawImage(offscreenCanvas2, -50, -50);
_assertPixel(offscreenCanvas, 25,25, 0,255,0,255, "25,25", "0,255,0,255");
_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
_assertPixel(offscreenCanvas, 75,25, 0,255,0,255, "75,25", "0,255,0,255");

t.done();

});
</script>
back to top