Files
UXP-Fixed/layout/reftests/css-animations/screen-animations.html
T
2018-02-02 04:16:08 -05:00

17 lines
223 B
HTML

<!DOCTYPE HTML>
<html>
<title>Static CSS animation</title>
<style>
@keyframes a {
from, to { color: blue }
}
p {
color: olive;
animation: a 1s infinite;
}
</style>
<p>blue with animation support; olive without</p>