- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Fri, 31 Dec 2021 11:18:59 +0000
- To: public-css-archive@w3.org
Yes, I mean, the new text is good, it covers this case: ```html <style> p { width: 0; word-wrap: break-word; } p::first-letter { background: lime; } </style> <p>‘T</p> ``` But it's not enough, because it doesn't cover ```html <style> p::first-letter { background: lime; } </style> <p>‘</p> ``` We basically resolved to align with Firefox, where the punctuation is lime. Seems a bit strange if `‘` is affected by ::first-letter when followed by a letter in another line (so not affected by ::first-letter), but a `‘` alone isn't affected by ::first-letter. -- GitHub Notification of comment by Loirooriol Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2254#issuecomment-1003349873 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 31 December 2021 11:19:01 UTC