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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/should-not-clip-composited-overflow-scrolling-layer-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 var container = document.getElementById('container');
5 container.scrollLeft = 2000;
6 container.scrollTop = 2000;
7 }
8 window.onload = runRepaintTest;
9 </script>
10 <style>
11 #container {
12 width: 500px;
13 height: 500px;
14 overflow: scroll;
15 }
16 #content {
17 width: 5000px;
18 height: 5000px;
19 background-color: green;
20 }
21 </style>
22 <div id="container">
23 <div id="content">
24 Tests invalidation of scrolling layer. Passes if the repaint rect is not clipp ed,
25 and there is no red when the scrolling container is scrolled.<br>
26 Note for manual testing: must run with --enable-prefer-compositing-to-lcd-text
27 on non-high-dpi machines to enable composited scrolling.
28 </div>
29 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698