mirror of
https://github.com/servo/servo.git
synced 2025-08-16 02:45:36 +01:00
Update web-platform-tests to revision 60220357131c65146444da1f54624d5b54d0975d
This commit is contained in:
parent
c45192614c
commit
775b784f79
2144 changed files with 58115 additions and 29658 deletions
|
@ -1,3 +1,4 @@
|
|||
spec: https://drafts.csswg.org/css-pseudo/
|
||||
suggested_reviewers:
|
||||
- plinss
|
||||
- frivoal
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<div><span style="opacity:0.5">P</span>ASS</div>
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Test: floating ::first-letter with opacity</title>
|
||||
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
|
||||
<link rel="match" href="first-letter-opacity-float-001-ref.html">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-letter-styling">
|
||||
<meta name="assert" content="Test checks that a floated ::first-letter with opacity is rendered correctly with dynamic changes.">
|
||||
<style>
|
||||
#one::first-letter { float: left; opacity: 0.5 }
|
||||
#two { opacity: 0.5 }
|
||||
</style>
|
||||
<div id="one">PASS</div>
|
||||
<div id="two"></div>
|
||||
<script>
|
||||
requestAnimationFrame(() =>
|
||||
requestAnimationFrame(() => {
|
||||
// This used to crash the compositing code in Blink.
|
||||
one.appendChild(two);
|
||||
}));
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue