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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/gradients/css3-radial-gradients3.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 type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 .box { 6 .box {
7 display: inline-block; 7 display: inline-block;
8 height: 200px; 8 height: 200px;
9 width: 250px; 9 width: 250px;
10 margin: 10px; 10 margin: 10px;
11 border: 1px solid black; 11 border: 1px solid black;
12 background-repeat: no-repeat; 12 background-repeat: no-repeat;
13 } 13 }
14 14
15 .gradient1 { 15 .gradient1 {
16 background-image: -webkit-radial-gradient(center, 50% 50%, black, white); 16 background-image: radial-gradient(50% 50%, black, white);
17 background-image: -moz-radial-gradient(center, 50% 50%, black, white);
18 } 17 }
19 18
20 .gradient2 { 19 .gradient2 {
21 background-image: -webkit-repeating-radial-gradient(center, 20% 20%, black , white, black); 20 background-image: repeating-radial-gradient(20% 20%, black, white, black);
22 background-image: -moz-repeating-radial-gradient(center, 20% 20%, black, w hite, black);
23 } 21 }
24 22
25 </style> 23 </style>
26 <script type="text/javascript" charset="utf-8"> 24 <script type="text/javascript" charset="utf-8">
27 if (window.testRunner) { 25 if (window.testRunner) {
28 testRunner.dumpAsTextWithPixelResults(); 26 testRunner.dumpAsTextWithPixelResults();
29 } 27 }
30 </script> 28 </script>
31 </head> 29 </head>
32 <body> 30 <body>
33 31
34 <div class="gradient1 box"></div> 32 <div class="gradient1 box"></div>
35 <div class="gradient2 box"></div> 33 <div class="gradient2 box"></div>
36 34
37 </body> 35 </body>
38 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698