| Index: LayoutTests/fast/canvas/canvas-filter-units-off-screen-expected.html
|
| diff --git a/LayoutTests/fast/canvas/canvas-filter-units-off-screen-expected.html b/LayoutTests/fast/canvas/canvas-filter-units-off-screen-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f917dad34e14490ebee4f80b2a9e041f73973168
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/canvas/canvas-filter-units-off-screen-expected.html
|
| @@ -0,0 +1,9 @@
|
| +<canvas id="canvas" width="100" height="100"></canvas>
|
| +<script>
|
| +var canvas = document.getElementById('canvas');
|
| +var ctx = canvas.getContext('2d');
|
| +ctx.fillStyle = '#0f0';
|
| +ctx.fillRect(25, 25, 50, 40);
|
| +ctx.fillStyle = '#000';
|
| +ctx.fillRect(25, 65, 50, 10);
|
| +</script>
|
|
|