| Index: third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect-expected.html b/third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a6ef1820edca67fea81b6d55473b92059f600003
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect-expected.html
|
| @@ -0,0 +1,29 @@
|
| +<!doctype html>
|
| +<html>
|
| +
|
| +<style>
|
| + svg {
|
| + width : 100px;
|
| + height: 100px;
|
| + padding : 0px;
|
| + margin : 0px;
|
| + }
|
| +
|
| + #reflection {
|
| + position: relative;
|
| + left: -4px;
|
| + }
|
| +</style>
|
| +
|
| +<svg 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>
|
| +
|
| +<svg id="reflection" style="filter: url(#filterElement)" viewBox="0 0 50 50">
|
| + <rect fill="red" x="0" y="0" height="50" width="50"/>
|
| +</svg>
|
| +
|
| +</html>
|
|
|