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

Unified Diff: LayoutTests/paint/overflow/fixed-children-should-not-scroll-expected.html

Issue 1110653003: [Reland] Correct fixed-position recording for Slimming Paint (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 8 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: LayoutTests/paint/overflow/fixed-children-should-not-scroll-expected.html
diff --git a/LayoutTests/paint/overflow/fixed-children-should-not-scroll-expected.html b/LayoutTests/paint/overflow/fixed-children-should-not-scroll-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..86c7178fecb4e9fe7c01817bcd711a99c96709be
--- /dev/null
+++ b/LayoutTests/paint/overflow/fixed-children-should-not-scroll-expected.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<style>
+#fixed {
+ position: absolute;
+ left: 300px;
+ top: 200px;
+ width: 100px;
+ height: 100px;
+ background-color: green;
+}
+
+#fixed-child {
+ position: absolute;
+ left: 25px;
+ top: 25px;
+ width: 50px;
+ height: 50px;
+ background-color: blue;
+}
+</style>
+<div id="fixed">
+ <div id="fixed-child"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698