Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-pseudo/first-line-nested-gcs.html
<!doctype html> <title>CSS Pseudo Test: Query ::first-line computed style before outer block ::first-line matches</title> <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo"> <link rel="match" href="first-line-green-ref.html"> <style> #outer::first-line { color: green } </style> <div id="outer"> <div id="inner"></div> </div> <script> getComputedStyle(inner, "::first-line").color; inner.appendChild(document.createTextNode("This text should be green.")); </script>
/css/css-pseudo/first-line-green-ref.html
<!doctype html> <title>CSS Test Reference</title> <div style="color:green">This text should be green.</div>