summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/inline-block-small-height-baseline.html
blob: 3c8f36c85c0d019b7208f0cfa3f2aca77763493c (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
<!doctype html>
<style>
  body {
    font-size: 96px;
    font-family: Arial;
  }

  #outer {
    background: #eee;
  }

  #wrap {
    display: inline-block;
    height: 10px;
  }

</style>

<body>
  <div id="outer">
    X
    <div id="wrap">Y</div>
  </div>
</body>