mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
46ed55316f
--HG-- extra : transplant_source : M%D9p%12%9A.%A3%8Apy%F3%01%7D%09%C1-LsUs
23 lines
514 B
HTML
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>
|