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

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

Issue 2341923002: Harmonize FilterEffect::mapRect and mapPaintRect (Closed)
Patch Set: Rebase Created 4 years, 2 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-color: green;
8 filter: url(#displacement);
9 }
10 </style>
11 <div class="box"></div>
12 <svg width="0" height="0">
13 <filter id="displacement" x="-0.5" y="-0.5" width="2" height="2"
14 color-interpolation-filters="sRGB">
15 <feFlood/>
16 <feDisplacementMap in="SourceGraphic" scale="40"/>
17 </filter>
18 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698