animate-opacity.html (281B)
1 <!DOCTYPE HTML> 2 <html> 3 <title>Reftest, bug 1156456</title> 4 <style> 5 6 body { 7 background: #2a4; 8 } 9 10 @keyframes HoldOpacity { 11 from, to { 12 opacity: 0.6; 13 } 14 } 15 16 div { 17 width: 200px; height: 200px; 18 background: #c37; 19 animation: 10s HoldOpacity infinite; 20 } 21 22 </style> 23 <div></div>