summaryrefslogtreecommitdiffstats
path: root/layout/reftests/meta-viewport/scrollbars-in-half-height-content.html
blob: b119361d0e0a1f896ddce9b98739f02cc92c17b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<meta name="viewport" content="width=device-width,initial-scale=2">
<!--
  This content height is 50% of the window height but it's scaled by 2x so that
  there should be scrollbars.
  -->
<style>
html, body {
  margin: 0;
  width: 100%;
  height: 50%;
}
div {
  background: green;
  position: absolute;
  width: 100%;
  height: 50%;
}
</style>
<div></div>