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

Unified Diff: LayoutTests/css3/filters/effect-reference-colorspace-hw.html

Issue 1235293003: Implement filter effects region for reference filters. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixes per review comments Created 5 years, 5 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/css3/filters/effect-reference-colorspace-hw.html
diff --git a/LayoutTests/css3/filters/effect-reference-colorspace-hw.html b/LayoutTests/css3/filters/effect-reference-colorspace-hw.html
index ecfa748224d4b2dc286d5ba7a1f097ef306452f0..4e8d3486529c09903ec9f67c19f5e0907770b55a 100644
--- a/LayoutTests/css3/filters/effect-reference-colorspace-hw.html
+++ b/LayoutTests/css3/filters/effect-reference-colorspace-hw.html
@@ -1,16 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1">
<defs>
- <filter id="blend" color-interpolation-filters="linearRGB">
+ <filter id="blend" color-interpolation-filters="linearRGB" x="-15%" y="-15%" width="130%" height="130%">
<feGaussianBlur stdDeviation="5 5" color-interpolation-filters="sRGB"/>
<feBlend in2="SourceGraphic" mode="screen" color-interpolation-filters="linearRGB"/>
</filter>
- <filter id="blend-s" color-interpolation-filters="sRGB">
+ <filter id="blend-s" color-interpolation-filters="sRGB" x="-15%" y="-15%" width="130%" height="130%">
<feGaussianBlur stdDeviation="5 5" color-interpolation-filters="linearRGB"/>
<feBlend in2="SourceGraphic" mode="screen" color-interpolation-filters="sRGB"/>
</filter>
- <filter id="lighting" color-interpolation-filters="linearRGB">
+ <filter id="lighting" color-interpolation-filters="linearRGB" x="0%" y="0%" width="100%" height="100%">
<feSpecularLighting color-interpolation-filters="sRGB">
<feSpotLight pointsAtX="160" pointsAtY="130" pointsAtZ="0" specularExponent="1" limitingConeAngle="20" x="0" y="0" z="10" color-interpolation-filters="linearRGB"/>
</feSpecularLighting>
@@ -18,7 +18,7 @@
<feBlend in2="SourceGraphic" mode="multiply" color-interpolation-filters="linearRGB"/>
</filter>
- <filter id="lighting-s" color-interpolation-filters="sRGB">
+ <filter id="lighting-s" color-interpolation-filters="sRGB" x="0%" y="0%" width="100%" height="100%">
<feSpecularLighting color-interpolation-filters="linearRGB">
<feSpotLight pointsAtX="160" pointsAtY="130" pointsAtZ="0" specularExponent="1" limitingConeAngle="20" x="0" y="0" z="10" color-interpolation-filters="sRGB"/>
</feSpecularLighting>
@@ -26,7 +26,7 @@
<feBlend in2="SourceGraphic" mode="multiply" color-interpolation-filters="sRGB"/>
</filter>
- <filter id="merge">
+ <filter id="merge" x="0%" y="0%" width="120%" height="120%">
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0" result="trans" color-interpolation-filters="linearRGB"/>
<feOffset dx="5" dy="5" in="trans" result="offset1" color-interpolation-filters="linearRGB"/>
<feOffset dx="10" dy="10" in="trans" result="offset2" color-interpolation-filters="linearRGB"/>
@@ -39,7 +39,7 @@
</feMerge>
</filter>
- <filter id="merge-s" color-interpolation-filters="sRGB">
+ <filter id="merge-s" color-interpolation-filters="sRGB" x="0%" y="0%" width="120%" height="120%">
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0" result="trans"/>
<feOffset dx="5" dy="5" in="trans" result="offset1"/>
<feOffset dx="10" dy="10" in="trans" result="offset2"/>
« no previous file with comments | « LayoutTests/css3/filters/effect-reference-colorspace.html ('k') | LayoutTests/css3/filters/effect-reference-composite.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698