Update web-platform-tests to revision 60220357131c65146444da1f54624d5b54d0975d

This commit is contained in:
WPT Sync Bot 2018-07-18 15:43:58 +00:00 committed by Tom Servo
parent c45192614c
commit 775b784f79
2144 changed files with 58115 additions and 29658 deletions

View file

@ -1,3 +1,4 @@
spec: https://drafts.csswg.org/css-pseudo/
suggested_reviewers:
- plinss
- frivoal

View file

@ -0,0 +1,2 @@
<!DOCTYPE html>
<div><span style="opacity:0.5">P</span>ASS</div>

View file

@ -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>