gecko/layout/reftests/forms/input-text-bounds-1.html
Karl Tomlinson 46ed55316f test for bug 806583
--HG--
extra : transplant_source : M%D9p%12%9A.%A3%8Apy%F3%01%7D%09%C1-LsUs
2012-11-08 10:15:42 +13:00

23 lines
514 B
HTML

<!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>