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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/gradients/border-image-gradient-sides-and-corners.html

Issue 2746583003: Send deprecation messages for prefixed gradients now that it's possible. (Closed)
Patch Set: recommit Created 3 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 <style> 3 <style>
4 div { 4 div {
5 background-color: blue; 5 background-color: blue;
6 border: 25px solid black; 6 border: 25px solid black;
7 width: 50px; 7 width: 50px;
8 height: 50px; 8 height: 50px;
9 margin: 10px; 9 margin: 10px;
10 } 10 }
11 11
12 .cornersOnly { 12 .cornersOnly {
13 -webkit-border-image: -webkit-gradient(linear, left top, left bottom , from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 50 5 0 50 50 repeat repeat; 13 -webkit-border-image: -webkit-gradient(linear, left top, left bottom , from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 50 5 0 50 50 repeat repeat;
14 } 14 }
15 15
16 .horizontalOnly { 16 .horizontalOnly {
17 -webkit-border-image: -webkit-gradient(linear, left top, left bottom , from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 50 2 5 50 25 repeat repeat; 17 -webkit-border-image: -webkit-gradient(linear, left top, left bottom , from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 50 2 5 50 25 repeat repeat;
18 } 18 }
19 19
20 .verticalOnly { 20 .verticalOnly {
21 -webkit-border-image: -webkit-gradient(linear, left top, left bottom , from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 25 5 0 25 50 stretch stretch; 21 -webkit-border-image: -webkit-gradient(linear, left top, left bottom , from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 25 5 0 25 50 stretch stretch;
22 } 22 }
23 </style> 23 </style>
24 </head> 24 </head>
25 <body> 25 <body>
26 <div class="cornersOnly"></div> 26 <div class="cornersOnly"></div>
27 <div class="horizontalOnly"></div> 27 <div class="horizontalOnly"></div>
28 <div class="verticalOnly"></div> 28 <div class="verticalOnly"></div>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698