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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/filters/effect-reference-repaint-offset.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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../resources/text-based-repaint.js"></script> 4 <script src="../resources/text-based-repaint.js"></script>
5 <script> 5 <script>
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 8
9 function repaintTest() 9 function repaintTest()
10 { 10 {
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 .before { 24 .before {
25 background-color: red; 25 background-color: red;
26 } 26 }
27 </style> 27 </style>
28 </head> 28 </head>
29 <body onload="runRepaintAndPixelTest()"> 29 <body onload="runRepaintAndPixelTest()">
30 <div class="box before"></div> 30 <div class="box before"></div>
31 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> 31 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1">
32 <defs> 32 <defs>
33 <filter id="offset"> 33 <filter id="offset" x="-0.5" y="-0.5" width="2" height="2">
34 <feOffset dx="190" dy="190"/> 34 <feOffset dx="190" dy="190"/>
35 </filter> 35 </filter>
36 </defs> 36 </defs>
37 </svg> 37 </svg>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698