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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-size-auto-with-gradient-and-height-changes-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 <html>
2 <head>
3
4 <style>
5 #outer {
6 padding-top: 200px;
7 background: -webkit-gradient(
8 linear,
9 left top,
10 left bottom,
11 color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1))
12 );
13 background-size: auto;
14 }
15
16 #inner {
17 height: 300px;
18 }
19 </style>
20
21 </head>
22
23 <body'>
24 <div id='outer'>
25 <div id='inner'>
26 </div>
27 </div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698