Chromium Code Reviews| 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..64ca89fe15b8373f7ab9ed7cf8ea7db15359da91 |
| --- /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(0 50px black)'; |
|
Stephen White
2015/06/25 18:30:27
Nit: 0 -> 0px
|
| +ctx.fillStyle = '#0f0'; |
| +ctx.fillRect(125, 125, 250, 200); |
| +document.body.appendChild(canvas); |
| +</script> |
| +</body> |