mirror of
https://github.com/servo/servo.git
synced 2025-08-08 15:05:35 +01:00
Update web-platform-tests to revision aa86bfbb569fee92a3176bae68e3b7ec54140a6d
This commit is contained in:
parent
a242913629
commit
4c80634acb
102 changed files with 1207 additions and 360 deletions
|
@ -0,0 +1,10 @@
|
|||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<style>
|
||||
li::marker {
|
||||
color: green;
|
||||
}
|
||||
</style>
|
||||
<ul>
|
||||
<li>Item</li>
|
||||
</ul>
|
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue