Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/marker-animate-002.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>CSS Test: A Web Animations only apply to restricted properties on ::marker pseudo-elements</title>
<link rel="match" href="marker-animate-002-ref.html">
<ul>
<li>Item</li>
</ul>
<script>
document.querySelector('li').animate({
opacity: [0.1, 0.1],
color: ['green', 'green']
}, {
pseudoElement: '::marker',
duration: Infinity
});
</script>