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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/border-image-scaled-gradient.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 div { 6 div {
7 width: 300px; 7 width: 300px;
8 height: 300px; 8 height: 300px;
9 border: 2px solid red; 9 border: 2px solid red;
10 border-image: -webkit-linear-gradient(30deg, black, white) 1 fill repeat; 10 border-image: linear-gradient(30deg, black, white) 1 fill repeat;
11 } 11 }
12 12
13 </style> 13 </style>
14 </head> 14 </head>
15 <body> 15 <body>
16 <div> 16 <div>
17 </div> 17 </div>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698