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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/background-attachment-local-equivalent.html

Issue 2498823002: Paint invalidation of local attachment backgrounds (Closed)
Patch Set: - Created 4 years, 1 month 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 ::-webkit-scrollbar {
4 display: none;
5 }
6 #container {
7 overflow: scroll;
8 width: 400px;
9 height: 400px;
10
11 background-attachment: local;
12 background-color: blue;
13 }
14
15 #child {
16 height: 500px;
17 }
18 </style>
19 <div id="container">
20 <div id="child"></div>
21 </div>
22 <script src="../resources/text-based-repaint.js"></script>
23 <script>
24 function repaintTest() {
25 child.style.height = '2000px';
26 container.scrollTop = 2000;
27 }
28 onload = runRepaintAndPixelTest;
29 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698