Re: [csswg-drafts] [css-display][css-pseudo] Interaction of display:contents and ::first-line

Firefox is, as far as I can tell, broken in general for ::first-line on an ancestor. In particular, the following:

```
<!DOCTYPE html>
<style>
main::first-line { color: blue; text-decoration: underline; }
div { color: green; letter-spacing: 10px; }
span { color: red; }
</style>
<main>
  <div>aaa <span>bbb</span> <p>ccc</p></div>
</main>
```
displays  "aaa" in green, and nothing with any underlines, at least in v53.

-- 
GitHub Notification of comment by tabatkins
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1310#issuecomment-301638940 using your GitHub account

Received on Tuesday, 16 May 2017 00:11:17 UTC