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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/filters/effect-reference-repaint-composite-4-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-color: red;
8 filter: url(#composite);
9 }
10 </style>
11 <div class="box"></div>
12 <svg width="0" height="0">
13 <filter id="composite" x="-0.5" y="-0.5" width="2" height="2">
14 <feFlood x="100" y="100" width="200" height="200" flood-color="green"/>
15 <feComposite operator="arithmetic" k3="1" in="SourceGraphic"/>
16 </filter>
17 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698