Bug 1944627 - update sidebar button checked state for non-revamped sidebar cases...
[gecko.git] / layout / reftests / details-summary / float-left-and-float-details-ref.html
blob57e39977942f29a0a3ec38ca295015e884bef31e
1 <!DOCTYPE html>
2 <!-- Any copyright is dedicated to the Public Domain.
3 - http://creativecommons.org/publicdomain/zero/1.0/ -->
5 <html>
6 <style>
7 body {
8 width: 400px;
10 div#float {
11 float: left;
12 width: 200px;
13 height: 200px;
14 background-color: lightgreen;
16 div#details {
17 float: left;
18 background-color: orange;
20 div#summary {
21 background-color: green;
23 </style>
24 <body>
25 <div id="float"></div>
26 <div id="details">
27 <div id="summary">Summary</div>
28 <!-- No content due to closed details -->
29 </div>
30 </body>
31 </html>