mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
16 lines
424 B
HTML
16 lines
424 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
|
|
<link rel="match" href="first-line-on-ancestor-block-ref.html">
|
|
<style>
|
|
#block::first-line { color: green; }
|
|
</style>
|
|
<div id="block">
|
|
<div>
|
|
<div style="color: blue">
|
|
<div>
|
|
<span><span>This text should be green.</span></span><br>
|
|
This text should be blue.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|