summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/plugins/plugin_outsideScrollArea.html
blob: c6ef50d5db1c9e08b96f86d18d04da928fe9c2f1 (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
#container {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: blue;
}

#test {
  width: 400px;
  height: 400px;
  position: absolute;
}
</style>
</head>
<body>
  <div id="container"></div>
</body>
</html>