~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/block/bugs/18445_3.html

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html> 
 
2
<head> 
 
3
  <title></title> 
 
4
  <style type="text/css">  
 
5
  .big {
 
6
                display: block;
 
7
                width: 100%;
 
8
    width: 20px;
 
9
    height: 400px;
 
10
    border: 1px solid black;
 
11
                }
 
12
 
 
13
        .fl {
 
14
                float: left;
 
15
                clear: left;
 
16
    width: 50px;
 
17
    height: 50px;
 
18
    border: 1px solid black;
 
19
                }
 
20
        </style> 
 
21
</head> 
 
22
<body>
 
23
  <div class="fl">this div should be under the big img</div>
 
24
  <img class="fl" >
 
25
  <img class="fl" > 
 
26
  <img class="fl" > 
 
27
  <img class="fl" > 
 
28
  <img class="big" >  
 
29
</body>
 
30
</html>