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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html

Issue 2747333006: Modify paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expect… (Closed)
Patch Set: Rebase Created 3 years, 9 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/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..9800d8401c6ac4801879b6bbd5ed45a771301896
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML>
+<style>
+#container {
+ width: 100px;
+ height: 300px;
+ border: 1px black solid;
+ overflow: hidden;
+}
+
+.scrolled {
+ width: 50px;
+ height: 50px;
+ margin: 10px;
+ position: relative;
+ background-color: green;
+ top: -100px;
+}
+</style>
+<div id="container">
+ <div class="scrolled">1</div>
+ <div class="scrolled">2</div>
+ <div class="scrolled">3</div>
+ <div class="scrolled">4</div>
+ <div class="scrolled">5</div>
+ <div class="scrolled">6</div>
+ <div class="scrolled">7</div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698