summaryrefslogtreecommitdiffstats
path: root/layout/reftests/details-summary/overflow-scroll-details-ref.html
blob: b85a242c9d8be47c7dfc1126678ac9be768c0e9d (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>
  div#details {
    background-color: orange;
    overflow: scroll;
    width: 300px;
    height: 200px;
  }
  div#summary {
    background-color: green;
    width: 200px;
    height: 100px;
  }
  </style>
  <body>
    <div id="details">
      <div id="summary">Lorem ipsum dolor sit amet, consectetur adipiscing elit,
        sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
        enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
        aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit
        in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
        Excepteur sint occaecat cupidatat non proident, sunt in culpa qui
        officia deserunt mollit anim id est laborum.
      </div>
    </div>
  </body>
</html>