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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/background-size-auto-with-gradient-and-height-changes.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="resources/text-based-repaint.js"></script> 3 <script src="resources/repaint.js"></script>
4 4
5 <style> 5 <style>
6 #outer { 6 #outer {
7 padding-top: 200px; 7 padding-top: 200px;
8 background: -webkit-gradient( 8 background: -webkit-gradient(
9 linear, 9 linear,
10 left top, 10 left top,
11 left bottom, 11 left bottom,
12 color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1)) 12 color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1))
13 ); 13 );
(...skipping 13 matching lines...) Expand all
27 </script> 27 </script>
28 </head> 28 </head>
29 29
30 <body onload='runRepaintTest();'> 30 <body onload='runRepaintTest();'>
31 <div id='outer'> 31 <div id='outer'>
32 <div id='inner'> 32 <div id='inner'>
33 </div> 33 </div>
34 </div> 34 </div>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698