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

Unified Diff: LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox.html

Issue 337903003: Map light-source oBB-relative coordinates to the user-space of the filter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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: LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox.html
diff --git a/LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox.html b/LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox.html
new file mode 100644
index 0000000000000000000000000000000000000000..d53b2f7c006febc20ad8eb9aa7cd4644430c9f59
--- /dev/null
+++ b/LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<svg width="200" height="200">
+ <filter id="puobb" primitiveUnits="objectBoundingBox" x="0" y="0" width="1" height="1">
+ <feDiffuseLighting>
+ <fePointLight x="0.5" y="0.5" z="0.2"/>
+ </feDiffuseLighting>
+ </filter>
+ <rect x="50" y="50" width="100" height="100" filter="url(#puobb)"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698