chromium/third_party/blink/web_tests/external/wpt/css/css-pseudo/first-letter-skip-empty-span.html

<!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="[email protected]">
<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>