| Index: third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light.html b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cdd121b6d70ae9328a3885bca3bf2a135499ffc3
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light.html
|
| @@ -0,0 +1,28 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.target {
|
| + display: inline-block;
|
| + width: 100px;
|
| + height: 100px;
|
| + background-color: red;
|
| +}
|
| +</style>
|
| +<div class="target" style="-webkit-filter: url(#noLightDiffuse); filter: url(#noLightDiffuse)"></div>
|
| +<div class="target" style="-webkit-filter: url(#noLightSpecular); filter: url(#noLightSpecular)"></div>
|
| +<svg height="0" color-interpolation-filters="sRGB">
|
| + <filter id="noLightDiffuse" x="0" y="0" width="1" height="1">
|
| + <feDiffuseLighting lighting-color="blue"/>
|
| + <feColorMatrix values="1 0 0 0 0,
|
| + 0 1 0 0 0.5,
|
| + 0 0 1 0 0,
|
| + 0 0 0 1 1"/>
|
| + </filter>
|
| +
|
| + <filter id="noLightSpecular" x="0" y="0" width="1" height="1">
|
| + <feSpecularLighting lighting-color="blue"/>
|
| + <feColorMatrix values="1 0 0 0 0,
|
| + 0 1 0 0 0.5,
|
| + 0 0 1 0 0,
|
| + 0 0 0 1 1"/>
|
| + </filter>
|
| +</svg>
|
|
|