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

Unified Diff: Source/WebKit/chromium/tests/data/fixed-position.html

Issue 13828004: Avoid compositing fixed-position elements if they cannot scroll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased again Created 7 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: Source/WebKit/chromium/tests/data/fixed-position.html
diff --git a/Source/WebKit/chromium/tests/data/fixed-position.html b/Source/WebKit/chromium/tests/data/fixed-position.html
index bcb44e3552a464f2c14947fa285033fc3249e111..74f8e33d71151dd4e8d609244340e34e96ef4a4d 100644
--- a/Source/WebKit/chromium/tests/data/fixed-position.html
+++ b/Source/WebKit/chromium/tests/data/fixed-position.html
@@ -8,7 +8,10 @@
</style>
</head>
-<body>
+<!-- Fixed position elements may skip compositing without a scrollable
+ancestor. To make sure this test covers the intended scenario, we force the
+body element to be tall, so that the FrameView is scrolling. -->
+<body style="height: 4000px">
<div id="fixed">
Fixed positioned.
</div>

Powered by Google App Engine
This is Rietveld 408576698