summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text/pre-line-1-ref.html
blob: c290c91a20d0d1fed011a2ad7560d94f5c15eb96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
<head>
<style>
span { background:yellow; }
.float { float:left; background:orange; }
.outer { overflow:auto; margin:1em; }
</style>
</head>
<body>

<div class="outer">My name is<br><br>Fred.</div>
<div class="outer"><span>My name is<br><br>Fred.</span></div>

<div class="outer"><div class="float">My name is<br><br>Fred.</div></div>
<div class="outer"><div class="float"><span class="preline">My name is<br><br>Fred.</span></div></div>

<div class="outer"><div style="width:0;"><div class="float">My name is<br><br>Fred.</div></div></div>
<div class="outer"><div style="width:0;"><div class="float"><span>My name is<br><br>Fred.</span></div></div></div>

</body>
</html>