blob: 7acf6aa7ed93804cc5960392ecd70dbf88725402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<script type="text/javascript">
function run() {
document.documentElement.offsetLeft;
var leg = document.getElementById('leg');
leg.style.marginLeft = '100px';
}
</script>
</head>
<body onload="run();">
<fieldset>
<legend id="leg">Legend</legend>
fieldset contents
</fieldset>
</body>
</html>
|