Update web-platform-tests to revision b'3ee7ccc2abbbc8d8f6efbb45f80bffdb3c0c76ba'

This commit is contained in:
WPT Sync Bot 2023-03-11 01:43:56 +00:00
parent 111363d338
commit 2ebdfcea9d
630 changed files with 8297 additions and 4979 deletions

View file

@ -0,0 +1,6 @@
<!DOCTYPE html>
<title>CSS Test Reference</title>
<p>
<span style="font-weight:bold">Should be bold</span><br>
Should not be bold
</p>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<title>CSS Pseudo-Element Test: ::first-line style should not trigger transitions on elements</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
<link rel="match" href="first-line-inherited-no-transition-ref.html">
<style>
p::first-line { font-weight: bold; }
span {
transition-property: font-weight;
transition-duration: 100s;
transition-delay: -50s;
}
</style>
<p><span>Should be bold<br>Should not be bold</span></p>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<title>CSS Test Reference</title>
<style>
span { background-color: green; }
#orange { color: orange; }
</style>
<p>
<span id="orange">Orange on green</span><br>
<span>Black on green</span>
</p>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<title>CSS Pseudo-Element Test: ::first-line style should not trigger transitions on elements</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
<link rel="match" href="first-line-inherited-with-transition-ref.html">
<style>
p::first-line { color: orange; }
span {
background-color: black;
transition: background-color 1000s steps(2, start);
}
span.lime {
background-color: lime;
}
</style>
<p><span id="s">Orange on green<br>Black on green</span></p>
<script>
s.offsetTop;
s.className = "lime";
</script>