Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'

This commit is contained in:
WPT Sync Bot 2022-11-10 01:22:36 +00:00
parent ace9b32b1c
commit df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions

View file

@ -0,0 +1,6 @@
<!doctype html>
<title>CSS Test Reference</title>
<style>
span { color: green; }
</style>
<div><span>P</span>ASS</div>

View file

@ -0,0 +1,13 @@
<!doctype html>
<title>::first-letter doesn't consider an abspos</title>
<meta charset="utf-8">
<link rel="help" href="https://www.w3.org/TR/CSS21/selector.html#first-letter">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1788785">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="match" href="first-letter-abspos-ref.html">
<style>
div::first-letter { color: green }
span { position: absolute; color: transparent; }
</style>
<div><span>F</span>PASS</div>