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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/backgrounds/gradient-background-leakage.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 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css"> 4 <style type="text/css">
5 .box { 5 .box {
6 height: 50px; 6 height: 50px;
7 width: 300px; 7 width: 300px;
8 margin: 10px; 8 margin: 10px;
9 background-image: -webkit-linear-gradient(black, black); 9 background-image: linear-gradient(black, black);
10 border-radius: 50px; 10 border-radius: 50px;
11 border: 4px solid #EEE; 11 border: 4px solid #EEE;
12 } 12 }
13 .transformed { 13 .transformed {
14 transform: scale(0.5); 14 transform: scale(0.5);
15 } 15 }
16 </style> 16 </style>
17 </head> 17 </head>
18 <body> 18 <body>
19 <!-- You should see no black leak out of the border. --> 19 <!-- You should see no black leak out of the border. -->
20 <div class="box"></div> 20 <div class="box"></div>
21 <div class="box transformed"></div> 21 <div class="box transformed"></div>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698