summaryrefslogtreecommitdiffstats
path: root/layout/reftests/details-summary/float-right-and-float-details-ref.html
blob: e7349f4a4a0d48df934b7072c6aebec694ca8a32 (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
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <style>
  body {
    width: 400px;
  }
  div#float {
    float: right;
    width: 200px;
    height: 200px;
    background-color: lightgreen;
  }
  div#details {
    float: right;
    background-color: orange;
  }
  div#summary {
    background-color: green;
  }
  </style>
  <body>
    <div id="float"></div>
    <div id="details">
      <div id="summary">Summary</div>
      <!-- No content due to closed details -->
    </div>
  </body>
</html>