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

Unified Diff: third_party/WebKit/LayoutTests/svg/filters/feSpecularLight-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
Index: third_party/WebKit/LayoutTests/svg/filters/feSpecularLight-no-light.html
diff --git a/third_party/WebKit/LayoutTests/svg/filters/feSpecularLight-no-light.html b/third_party/WebKit/LayoutTests/svg/filters/feSpecularLight-no-light.html
new file mode 100644
index 0000000000000000000000000000000000000000..79fda7fdbf2767f448efb0069a13f92032e61122
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/filters/feSpecularLight-no-light.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<svg>
+ <filter id="lightless" 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"
+ color-interpolation-filters="sRGB"/>
+ </filter>
+ <rect width="100" height="100" fill="red" filter="url(#lightless)"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698