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

Unified Diff: third_party/WebKit/LayoutTests/svg/filters/feTurbulence-negative-basefreq.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/feTurbulence-negative-basefreq.html
diff --git a/third_party/WebKit/LayoutTests/svg/filters/feTurbulence-negative-basefreq.html b/third_party/WebKit/LayoutTests/svg/filters/feTurbulence-negative-basefreq.html
new file mode 100644
index 0000000000000000000000000000000000000000..4e67527240010660e3c3e72ca14ab262b2dbe6af
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/filters/feTurbulence-negative-basefreq.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<svg width="400" height="100" color-interpolation-filters="sRGB">
+ <!-- type=fractalNoise -->
+ <filter id="fn1" x="0" y="0" width="1" height="1">
+ <feTurbulence type="fractalNoise" baseFrequency="-1 1"/>
+ <feColorMatrix values="1 0 0 0 0, 0 1 0 0 0.5, 0 0 1 0 0, 0 0 0 1 1"/>
+ </filter>
+ <rect width="100" height="100" filter="url(#fn1)"/>
+
+ <filter id="fn2" x="0" y="0" width="1" height="1">
+ <feTurbulence type="fractalNoise" baseFrequency="1 -1"/>
+ <feColorMatrix values="1 0 0 0 0, 0 1 0 0 0.5, 0 0 1 0 0, 0 0 0 1 1"/>
+ </filter>
+ <rect width="100" height="100" filter="url(#fn2)" x="100"/>
+
+ <!-- type=turbulence -->
+ <filter id="tb1" x="0" y="0" width="1" height="1">
+ <feTurbulence type="fractalNoise" baseFrequency="-1 1"/>
+ <feColorMatrix values="1 0 0 0 0, 0 1 0 0 0.5, 0 0 1 0 0, 0 0 0 1 1"/>
+ </filter>
+ <rect width="100" height="100" filter="url(#tb1)" x="200"/>
+
+ <filter id="tb2" x="0" y="0" width="1" height="1">
+ <feTurbulence type="fractalNoise" baseFrequency="1 -1"/>
+ <feColorMatrix values="1 0 0 0 0, 0 1 0 0 0.5, 0 0 1 0 0, 0 0 0 1 1"/>
+ </filter>
+ <rect width="100" height="100" filter="url(#tb2)" x="300"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698