Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1699)

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light.html

Issue 1375793003: Update error-handling for fe*Lighting and feTurbulence (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698