summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/413982.html
blob: e0502fd0dfb68209adde9f87b936fc118b49e943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE HTML>
<html lang="en">
<head>
    <title>Bug 413982</title>
    <style type="text/css">
        div.clearboth {
            clear: both;
        }
        div.floatdiv {
            float: left;
        }
        span.innerspan {
            white-space: nowrap;
        }
    </style>
</head>
<body>
    <div class="floatdiv">
        This is
        <span class="innerspan"> the first line.
        </span>
    </div>
    <div class="clearboth">This is the second line.</div>
</body>
</html>