tenfourfox/layout/reftests/css-animations/print-no-animations.html

17 lines
245 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE HTML>
<html class="reftest-print">
<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>