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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/background-size-auto-with-gradient-and-height-changes-expected.html

Issue 1994373002: Convert some repaint tests into ref tests (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 3
4 <style> 4 <style>
5 #outer { 5 #outer {
6 padding-top: 200px; 6 padding-top: 200px;
7 background: -webkit-gradient( 7 background: -webkit-gradient(
8 linear, 8 linear,
9 left top, 9 left top,
10 left bottom, 10 left bottom,
11 color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1)) 11 color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1))
12 ); 12 );
13 background-size: auto; 13 background-size: auto;
14 } 14 }
15 15
16 #inner { 16 #inner {
17 height: 300px; 17 height: 300px;
18 } 18 }
19 </style> 19 </style>
20
21 </head> 20 </head>
22 21
23 <body'> 22 <body>
24 <div id='outer'> 23 <div id='outer'>
25 <div id='inner'> 24 <div id='inner'>
26 </div> 25 </div>
27 </div> 26 </div>
28 </body> 27 </body>
29 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698