| Index: third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child.html b/third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dacd912e7e6d8db61e989b213d653220c984c772
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child.html
|
| @@ -0,0 +1,27 @@
|
| +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="0" height="0">
|
| + <defs>
|
| + <filter id="filter" x="25%" y="0%" width="50%" height="100%">
|
| + <feComponentTransfer>
|
| + <feFuncR type="linear" intercept="0" slope="1"/>
|
| + <feFuncG type="linear" intercept="0" slope="0"/>
|
| + <feFuncB type="linear" intercept="0" slope="0"/>
|
| + <feFuncA type="linear" intercept="0" slope="1"/>
|
| + </feComponentTransfer>
|
| + </filter>
|
| + </defs>
|
| +</svg>
|
| +<style>
|
| +#parent {
|
| + display: inline-block;
|
| + filter: url(#filter);
|
| + -webkit-filter: url(#filter);
|
| +}
|
| +#child {
|
| + background-color: gray;
|
| + width: 50px;
|
| + height: 50px;
|
| + transform: translate(25px, 25px) scale(2);
|
| + -webkit-transform: translate(25px, 25px) scale(2);
|
| +}
|
| +</style>
|
| +<div id="parent"><div id="child"></div></div>
|
|
|