Ticket #5860: offsetTest.html

File offsetTest.html, 0.6 kB (added by bill, 11 months ago)
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html>
3<head>
4</head>
5<body style="padding: 0px;">
6        <div id="borderDivRelative" style="border: 50px solid black; padding: 10px; margin: 15px; width: 90%; height: 100px; position: relative;">
7                        <select id="combo"></select>
8        </div>
9        <script>
10                var combo = document.getElementById("combo");
11                var bd = document.getElementById("borderDivRelative");
12
13                alert(
14                        "border div offset = " + bd.offsetLeft + ", " + bd.offsetTop + "\n" +
15                        "combobox offset = " + combo.offsetLeft + ", " + combo.offsetTop
16                );
17        </script>
18</body>
19</html>