aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ref/overflow_simple_a.html
blob: 9b8b53eff89aff52bd6e7b7b31b69e18a7dc5e6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
  <head>
    <style>
      #first {
      height: 100px;
      width: 100px;
      overflow: hidden;
      }
      #second {
      height: 100px;
      width: 200px;
      background: green;
      }
    </style>
  </head>
  <body>
    <div id="first">
      <div id="second">
      </div>
    </div>
  </body>
</html>