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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <style>
3 #container {
4 width: 100px;
5 height: 300px;
6 border: 1px black solid;
7 overflow: hidden;
8 }
9
10 .scrolled {
11 width: 50px;
12 height: 50px;
13 margin: 10px;
14 position: relative;
15 background-color: green;
16 top: -100px;
17 }
18 </style>
19 <div id="container">
20 <div class="scrolled">1</div>
21 <div class="scrolled">2</div>
22 <div class="scrolled">3</div>
23 <div class="scrolled">4</div>
24 <div class="scrolled">5</div>
25 <div class="scrolled">6</div>
26 <div class="scrolled">7</div>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698