haikuwebkit/LayoutTests/animations/keyframe-pseudo-shadow-expe...

15 lines
236 B
HTML

<!DOCTYPE html>
<style>
div::after {
display: inline-block;
content: 'Hello world!';
animation: spin 1s infinite;
}
@keyframes spin {
from { transform: rotate(180deg) }
to { transform: rotate(180deg) }
}
</style>
<div></div>