gecko-dev/layout/reftests/css-animations/content-on-marker-pseudo-element-at-half.html
Mats Palmgren 9e5f85edc2 Bug 1538618 - [css-pseudo] implement animation support for ::marker pseudos. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D25003

--HG--
extra : rebase_source : 999373f16c816cdd0dd64b1cc3f9f3f30bb12003
extra : amend_source : 829c0fc25afc55d50b70aebc1f3b9f0e8f06c458
2019-03-26 05:48:26 +01:00

19 lines
316 B
HTML

<!DOCTYPE html>
<html>
<style>
@keyframes anim {
from { content: ''; }
to { content: 'content'; }
}
#target::marker {
content: 'initial';
animation: anim 100s linear -50s paused;
}
#target {
display: list-item;
margin-left: 200px;
}
</style>
<div id='target'></div>
</html>