Re: [csswg-drafts] [css-pseudo] Clarify spec text in "Finding the First Formatted Line" section

FYI, Firefox doesn't support applying first-letter/line inside descendant blocks yet ([bug 214004](https://bugzilla.mozilla.org/show_bug.cgi?id=214004)), so for the given example the entire `<DIV>` contents is wrapped in a ::first-line pseudo.  Given the limitations of our existing implementation, the rendering makes sense, i.e. it renders exactly the same as:
```html
<style>span { color: cyan; background: magenta; }</style>
<div><span><p style="display: inline-block">Hello<br>Goodbye</p> etcetera</span></div>
```

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

Received on Tuesday, 19 December 2017 18:51:52 UTC