summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/text/bounds-1.html
blob: 4af490dce64fc52af1cb535a2d8936379c82a3d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
  <title>Test for bug 806583</title>
  <style>
    body, div { background: blue }
    div { position: fixed; }
  </style>
</head>
<body>
  <input id="input">
  <div id="cover"/>
  <script>
var rect = document.getElementById("input").getBoundingClientRect();
var cover = document.getElementById("cover");
cover.style.left = rect.left + "px";
cover.style.top = rect.top + "px";
cover.style.width = rect.width + "px";
cover.style.height = rect.height + "px";
  </script>
</body>
</html>