gecko-dev/layout/reftests/css-animations/content-on-pseudo-element-a...

15 строки
240 B
HTML

<!DOCTYPE html>
<html>
<style>
@keyframes anim {
from { content: 'content'; }
to { content: ''; }
}
#target::before {
content: 'initial';
animation: anim 100s paused;
}
</style>
<div id='target'></div>
</html>