linear-gradient-repeated-ref.html (366B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Bug 1274624: Repeating linear gradient</title> 5 <style type="text/css"> 6 div { 7 background: repeating-linear-gradient(to top, red, blue 100px); 8 background-position: 30px 30px; 9 width: 400px; 10 height: 400px; 11 } 12 </style> 13 </head> 14 <body> 15 <div> 16 </div> 17 </body> 18 </html>