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

Unified Diff: third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-local-background-expected.html

Issue 2068723002: Paint local attachment backgrounds into composited scrolling contents layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add/update tests and simplify added code. Created 4 years, 4 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/compositing/overflow/overflow-scroll-with-local-background-expected.html
diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-local-background-expected.html b/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-local-background-expected.html
index 1e87c7bda454e2f878512fb078c57c3d0fc97f4f..231af47b49ca8bbd0e0711e23e40eb73378d83ec 100644
--- a/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-local-background-expected.html
+++ b/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-local-background-expected.html
@@ -1,11 +1,11 @@
<script>
onload = function() {
- document.getElementById('scroller').scrollTo(0, 200);
+ document.getElementById('scroller1').scrollTop = 200;
+ document.getElementById('scroller2').scrollTop = 200;
}
</script>
<style>
-#scroller {
- background: gray local content-box;
+.scroller {
border: 10px solid rgba(0, 255, 0, 0.5);
overflow: scroll;
padding: 10px;
@@ -13,6 +13,14 @@ onload = function() {
height: 200px;
}
+#scroller1 {
+ background: gray local content-box;
+}
+
+#scroller2 {
+ background: url('../resources/apple.jpg') local;
+}
+
.spacer {
height: 300px;
}
@@ -22,6 +30,11 @@ onload = function() {
element without repainting requires the background to be painted into
the scrolling contents layer and correctly account for that layer not
including the border in its bounds. -->
-<div id="scroller">
+<div id="scroller1" class="scroller">
+ <div class="spacer"></div>
+</div>
+<!-- This scroller has a locally attached background image which should
+ scroll with the content. -->
+<div id="scroller2" class="scroller">
<div class="spacer"></div>
</div>

Powered by Google App Engine
This is Rietveld 408576698