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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html

Issue 2436283002: Fix LayoutObject::mapLocalToAncestor() for fixed under absolute (Closed)
Patch Set: Rebaseline after rebase Created 4 years, 1 month 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 <script>
3 onload = function() { window.scrollTo(0, 400); }
4 </script>
5 <style>
6 body { height: 1985px; }
7 #target {
8 position: absolute;
9 top: 400px;
10 left: 0;
11 width: 100px;
12 height: 200px;
13 /* The colors are results of blended 99% green/blue and 1% red. */
14 border: 10px solid rgb(3, 0, 252);
15 background-color: rgb(3, 126, 0);
16 }
17 </style>
18 <div id="target"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698