| Index: third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1f1a86d46a72b8e9220371958b6b79d0be4b07a6
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html
|
| @@ -0,0 +1,12 @@
|
| +<!DOCTYPE html>
|
| +<div style="width: 100px; height: 100px; background-color: red; -webkit-filter: url(#f); filter: url(#f)"></div>
|
| +<svg height="0">
|
| + <filter id="f" x="0" y="0" width="1" height="1">
|
| + <feConvolveMatrix/>
|
| + <feColorMatrix values="1 0 0 0 0,
|
| + 0 1 0 0 0.5,
|
| + 0 0 1 0 0,
|
| + 0 0 0 1 1"
|
| + color-interpolation-filters="sRGB"/>
|
| + </filter>
|
| +</svg>
|
|
|