first-line-with-first-letter-expected.html 208 B

123456789
  1. <!DOCTYPE html>
  2. <style>
  3. div::first-letter { color: white }
  4. div::first-line { background: green }
  5. </style>
  6. <div>
  7. First letter should be white, and the first line should have a green
  8. background.
  9. </div>