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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/updating-scrolling-container-and-content-expected.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 <script>
3 onload = function() {
4 document.getElementById('container').scrollTop = 50;
5 };
6 </script>
7 <style>
8 #container {
9 overflow: scroll;
10 width: 200px;
11 height: 200px;
12 color: green;
13 }
14 </style>
15 <div style="height: 100px">
16 Tests invalidation of scrolling container and contents on change of style which affects also the contents.
17 Passes if the content text is green, and the whole content layer (if composited scrolling) is invalidated.
18 </div>
19 <div id="container">
20 CONTENT<br>CONTENT<br>CONTENT<br>CONTENT<br>CONTENT<br>CONTENT<br>CONTENT<br>C ONTENT<br>CONTENT<br>CONTENT<br>CONTENT<br>CONTENT<br>CONTENT
21 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698