mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
55696f4e05
'content' property shoud animate on pseudo element as well. To confirm the animation, add a reftest. MozReview-Commit-ID: 4hfx6PLThgZ
15 lines
252 B
HTML
15 lines
252 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
@keyframes anim {
|
|
from { content: ''; }
|
|
to { content: 'content'; }
|
|
}
|
|
#target::before {
|
|
content: 'initial';
|
|
animation: anim 100s linear -50s paused;
|
|
}
|
|
</style>
|
|
<div id='target'></div>
|
|
</html>
|