Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/css3/filters/effect-reference-local-url-with-base.html |
| diff --git a/third_party/WebKit/LayoutTests/css3/filters/effect-reference-local-url-with-base.html b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-local-url-with-base.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c928cbed0665679aac4c605dd9e4f2d65a363b71 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-local-url-with-base.html |
| @@ -0,0 +1,16 @@ |
| +<!DOCTYPE html> |
| +<base href="http://www.example.com/"> |
| +<style> |
| +#target { |
| + width: 100px; |
| + height: 100px; |
| + background-color: red; |
| + filter: url(#filter); |
| +} |
| +</style> |
| +<div id="target"></div> |
| +<svg> |
| + <filter id="filter" x="0" y="0" width="1" height="1" color-interpolation-filters="sRGB"> |
| + <feFlood flood-color="green"/> |
| + </filter> |
| +</svg> |