Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<link rel="match" href="2d.layer.global-filter-expected.html">
<title>Canvas test: 2d.layer.global-filter</title>
<h1>2d.layer.global-filter</h1>
<p class="desc">Tests that layers ignore the global context filter.</p>
<canvas id="canvas" width="150" height="100">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext('2d');
ctx.filter = 'blur(5px)'
ctx.beginLayer();
ctx.fillRect(10, 10, 30, 30); // `ctx.filter` applied to draw call.
ctx.endLayer();
ctx.beginLayer();
ctx.filter = 'none';
ctx.fillRect(60, 10, 30, 30); // Should not be filted by the layer.
ctx.endLayer();
ctx.fillRect(110, 10, 30, 30); // `ctx.filter` is still set.
</script>