mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
318 B
HTML
18 lines
318 B
HTML
<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>
|