mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
21 lines
746 B
HTML
21 lines
746 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
|
|
<link rel="match" href="first-line-with-out-of-flow-ref.html">
|
|
<title>CSS Test: ::first-line with out of flow and nested span</title>
|
|
<style>
|
|
#block::first-line { color: green; }
|
|
</style>
|
|
<div id="block">
|
|
<div style="position: absolute"><br></div>
|
|
<div style="float: right"><br></div>
|
|
<div>
|
|
<div style="position: absolute"><br></div>
|
|
<div style="float: right"><br></div>
|
|
<div style="color: blue">
|
|
<div>
|
|
<span style="position: absolute"></span><span>This text </span><span style="position: absolute"></span><span>should be green.</span><br>
|
|
This text should be blue.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|