Update web-platform-tests to revision aa86bfbb569fee92a3176bae68e3b7ec54140a6d

This commit is contained in:
WPT Sync Bot 2020-07-22 08:20:19 +00:00
parent a242913629
commit 4c80634acb
102 changed files with 1207 additions and 360 deletions

View file

@ -0,0 +1,10 @@
<!doctype html>
<meta charset=utf-8>
<style>
li::marker {
color: green;
}
</style>
<ul>
<li>Item</li>
</ul>

View file

@ -0,0 +1,17 @@
<!doctype html>
<meta charset=utf-8>
<title>CSS Test: A Web Animations only apply to restricted properties on ::marker pseudo-elements</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
<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>