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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/repaint/scroll-fixed-squahed-layer.html

Issue 1972273002: Let repaint tests test pixels by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> 4 <script src="../../fast/repaint/resources/repaint.js"></script>
5 <style> 5 <style>
6 .main { 6 .main {
7 position: fixed; 7 position: fixed;
8 top: 100px; 8 top: 100px;
9 left: 100px; 9 left: 100px;
10 width: 200px; 10 width: 200px;
11 height: 200px; 11 height: 200px;
12 background-color: lightblue; 12 background-color: lightblue;
13 will-change: transform; 13 will-change: transform;
14 } 14 }
(...skipping 14 matching lines...) Expand all
29 function repaintTest() { 29 function repaintTest() {
30 window.scrollTo(0, 100); 30 window.scrollTo(0, 100);
31 } 31 }
32 </script> 32 </script>
33 </head> 33 </head>
34 <body style="height:2000px" onload="runRepaintTest()"> 34 <body style="height:2000px" onload="runRepaintTest()">
35 <div class="main"></div> 35 <div class="main"></div>
36 <div class="squahed"></div> 36 <div class="squahed"></div>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698