Files
ladybird/Tests/LibWeb/Screenshot/input/canvas-shadow.html
Sam Atkins b7efb61fbe Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others
Now each test type has the same directories:
- input
- expected
- data

Also, tests can be in subdirectories within ./input.
2024-11-05 14:02:07 +00:00

31 lines
629 B
HTML

<link rel="match" href="../expected/canvas-shadow-ref.html" />
<style>
* {
margin: 0;
}
body {
background-color: white;
}
</style>
<canvas width=800 height=600></canvas>
<script>
const canvas = document.querySelector("canvas");
const ctx = canvas.getContext("2d");
// Shadow
ctx.shadowColor = "LightCoral";
ctx.shadowOffsetX = 15;
ctx.shadowOffsetY = 15;
// Filled rectangle
ctx.fillStyle = "red";
ctx.fillRect(20, 10, 100, 100);
// Stroked rectangle
ctx.lineWidth = 4;
ctx.strokeStyle = "red";
ctx.strokeRect(170, 10, 100, 100);
</script>