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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/filters/effect-reference-repaint-lighting-expected.html

Issue 2341923002: Harmonize FilterEffect::mapRect and mapPaintRect (Closed)
Patch Set: Rebase Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .box {
4 width: 200px;
5 height: 200px;
6 margin: 20px;
7 background-image: radial-gradient(transparent, black);
8 filter: url(#lighting);
9 }
10 </style>
11 <div class="box"></div>
12 <svg width="0" height="0">
13 <filter id="lighting" x="-0.5" y="-0.5" width="2" height="2">
14 <feDiffuseLighting surfaceScale="200">
15 <feDistantLight azimuth="135"/>
16 </feDiffuseLighting>
17 <feComposite operator="in" x="50" y="50" width="100" height="100" in2="Sourc eGraphic"/>
18 </filter>
19 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698