| Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1185895680efa61fabc0d05f4573624081fb1fd9
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-width-height.html
|
| @@ -0,0 +1,17 @@
|
| +<svg style="display: block; width: 0; height: 0">
|
| + <defs>
|
| + <filter id="crop" primitiveUnits="objectBoundingBox">
|
| + <femerge x="0" y="0" width="50%" height="40%">
|
| + <femergenode in="SourceGraphic"></femergenode>
|
| + </femerge>
|
| + </filter>
|
| + </defs>
|
| +</svg>
|
| +<canvas id="canvas" width="100" height="100"></canvas>
|
| +<script>
|
| +var canvas = document.getElementById('canvas');
|
| +var ctx = canvas.getContext('2d');
|
| +ctx.filter = 'url(#crop)';
|
| +ctx.fillStyle = '#0f0';
|
| +ctx.fillRect(0, 0, 90, 90);
|
| +</script>
|
|
|