| Index: LayoutTests/fast/canvas/canvas-filter-units-off-screen.html
|
| diff --git a/LayoutTests/fast/canvas/canvas-filter-units-off-screen.html b/LayoutTests/fast/canvas/canvas-filter-units-off-screen.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..621851ad25716ea8355f253536397f7e80197fcd
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/canvas/canvas-filter-units-off-screen.html
|
| @@ -0,0 +1,14 @@
|
| +<body>
|
| +<script>
|
| +var canvas = document.createElement('canvas');
|
| +canvas.width = 500;
|
| +canvas.height = 500;
|
| +canvas.style.width = '100px';
|
| +canvas.style.height = '100px';
|
| +var ctx = canvas.getContext('2d');
|
| +ctx.filter = 'drop-shadow(0px 50px black)';
|
| +ctx.fillStyle = '#0f0';
|
| +ctx.fillRect(125, 125, 250, 200);
|
| +document.body.appendChild(canvas);
|
| +</script>
|
| +</body>
|
|
|