| Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-modified.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-modified.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-modified.html
|
| index 76cb332455eef8c59c50aea0c7e92a0bb53b3398..3f673310c76333cdc8bea7c070461cbe60073e00 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-modified.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-filter-modified.html
|
| @@ -9,9 +9,11 @@
|
| <script>
|
| var canvas = document.getElementById('canvas');
|
| var ctx = canvas.getContext('2d');
|
| -ctx.filter = 'url(#blur)';
|
| +ctx.font = '20px sans-serif';
|
| +ctx.filter = 'drop-shadow(0em 1em green) url(#blur)';
|
| ctx.fillStyle = '#0f0';
|
| ctx.fillRect(20, 20, 20, 20);
|
| +ctx.font = '30px sans-serif';
|
| document.getElementById('blurElement').setAttribute('stdDeviation', '0, 5');
|
| ctx.fillRect(60, 20, 20, 20);
|
| </script>
|
|
|