Update web-platform-tests to revision 77f3f1533681dedef98a4c94c2abdb562d097002

This commit is contained in:
WPT Sync Bot 2020-12-01 08:21:31 +00:00
parent 02af8952eb
commit 6e75c491e4
84 changed files with 1313 additions and 302 deletions

View file

@ -0,0 +1,5 @@
<link rel="author" href="mailto:mats@mozilla.com">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1679682">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5049">
<style>input{width:1px}::file-selector-button{display: none;}</style>
<input type="file">

View file

@ -0,0 +1,9 @@
<!DOCTYPE HTML>
<title>Reference: The nested empty span should be skipped when finding the ::first-letter content</title>
<link rel="author" title="Jaeyong Bae" href="jdragon.bae@gmail.com">
<style>
first-letter { color: green }
</style>
<div>
<span><first-letter>F</first-letter>irst letter should be green</span>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE HTML>
<title>CSS Test: The nested empty span should be skipped when finding the ::first-letter content</title>
<link rel="author" title="Jaeyong Bae" href="jdragon.bae@gmail.com">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#application-in-css">
<link rel="match" href="first-letter-skip-empty-span-nested-ref.html">
<style>
div::first-letter { color: green }
</style>
<div>
<span></span>
<span><span></span>First letter should be green</span>
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE HTML>
<title>Reference: The empty span should be skipped when finding the ::first-letter content</title>
<link rel="author" title="Jaeyong Bae" href="jdragon.bae@gmail.com">
<style>
first-letter { color: green }
</style>
<div>
<span><first-letter>F</first-letter>irst letter should be green</span>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE HTML>
<title>CSS Test: The empty span should be skipped when finding the ::first-letter content</title>
<link rel="author" title="Jaeyong Bae" href="jdragon.bae@gmail.com">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#application-in-css">
<link rel="match" href="first-letter-skip-empty-span-ref.html">
<style>
div::first-letter { color: green }
</style>
<div>
<span></span>
<span>First letter should be green</span>
</div>