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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/resources/repaint-with-scrollbar-change.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 #container { 3 #container {
4 height: 4000px; 4 height: 4000px;
5 background-color: red; 5 background-color: red;
6 } 6 }
7 .noScroll { 7 .noScroll {
8 overflow-y: hidden; 8 overflow-y: hidden;
9 } 9 }
10 #overlay { 10 #overlay {
(...skipping 26 matching lines...) Expand all
37 overlay.classList.toggle('hidden'); 37 overlay.classList.toggle('hidden');
38 document.body.classList.toggle('noScroll'); 38 document.body.classList.toggle('noScroll');
39 } 39 }
40 40
41 if (window.testRunner) 41 if (window.testRunner)
42 window.testRunner.waitUntilDone(); 42 window.testRunner.waitUntilDone();
43 43
44 window.scrollTo(0, 4000); 44 window.scrollTo(0, 4000);
45 runAfterLayoutAndPaint(runRepaintTest); 45 runAfterLayoutAndPaint(runRepaintTest);
46 </script> 46 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698