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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/transformed-mask.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" media="screen"> 4 <style type="text/css" media="screen">
5 .box { 5 .box {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 background-color: black; 8 background-color: black;
9 display: inline-block; 9 display: inline-block;
10 margin: 20px; 10 margin: 20px;
11 -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, le ft bottom, from(transparent), to(rgba(0, 0, 0, 0.2))); 11 -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
12 } 12 }
13 13
14 .transformed { 14 .transformed {
15 transform: rotate(10deg); 15 transform: rotate(10deg);
16 } 16 }
17 17
18 .transformed2 { 18 .transformed2 {
19 transform: skewX(10deg); 19 transform: skewX(10deg);
20 } 20 }
21 21
22 </style> 22 </style>
23 </head> 23 </head>
24 <body> 24 <body>
25 <p>You should not see any pixel artifacts around the reflections.</p> 25 <p>You should not see any pixel artifacts around the reflections.</p>
26 <div class="box"></div> 26 <div class="box"></div>
27 <div class="transformed box"></div> 27 <div class="transformed box"></div>
28 <div class="transformed2 box"></div> 28 <div class="transformed2 box"></div>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698