translation-animation-on-important-property.html (495B)
1 <!DOCTYPE html> 2 <title>Translation animation on important property</title> 3 <link rel="help" href="https://crbug.com/1324679"> 4 <link rel="match" href="translation-animation-on-important-property-ref.html"> 5 <style> 6 @keyframes move { 7 0% {transform: translateX(0px);} 8 100% {transform: translateX(100px);} 9 } 10 #target { 11 width: 100px; 12 height: 100px; 13 background: green; 14 transform: none !important; 15 animation: move 10000s cubic-bezier(0, 1, 1, 0) -5000s; 16 } 17 </style> 18 <div id="target"></div>