summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/1416544.html
blob: 713568d10796e63b0391cb9bbb536bc7ee1e028f (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
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
  <style>
  
  body {
    columns: 2;
    -webkit-columns: 2;
  }
  span {
    float: right;  
  }

  </style>
</head>
<body>

 <div>
      a
      <span>1</span>
 </div>

 <div>
    <div>
      b
      <span>2</span>
      <div></div>
    </div>
 </div>

</body>
</html>