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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..a020aa910c8e1cd03241cb29264b28b3dc460faf
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<script>
+onload = function() { window.scrollTo(0, 400); }
+</script>
+<style>
+body { height: 1985px; }
+#target {
+ position: absolute;
+ top: 400px;
+ left: 0;
+ width: 100px;
+ height: 200px;
+ /* The colors are results of blended 99% green/blue and 1% red. */
+ border: 10px solid rgb(3, 0, 252);
+ background-color: rgb(3, 126, 0);
+}
+</style>
+<div id="target"></div>

Powered by Google App Engine
This is Rietveld 408576698