Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect.html |
| diff --git a/third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect.html b/third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..df623788e5f8726a928ff00f73e6271be5ee03a4 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect.html |
| @@ -0,0 +1,25 @@ |
| +<!doctype html> |
| +<html> |
|
fs
2016/05/23 12:29:52
Drop.
Noel Gordon
2016/05/29 04:15:28
Done.
|
| + |
| +<style> |
| + svg { |
| + width : 100px; |
| + height: 100px; |
| + padding : 0px; |
| + margin : 0px; |
| + } |
| + |
| + #reflect { |
| + -webkit-box-reflect: right; |
| + box-reflect: right; |
| + } |
| +</style> |
| + |
| +<svg id="reflect" style="filter: url(#filterElement)" viewBox="0 0 50 50"> |
| + <filter id="filterElement"> |
| + <feColorMatrix type="hueRotate" values="90"/> |
| + </filter> |
| + <rect fill="red" x="0" y="0" height="50" width="50"/> |
| +</svg> |
| + |
| +</html> |