mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
226 B
HTML
19 lines
226 B
HTML
<html>
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h3 id="h3"></h3>
|
|
|
|
<div>Div</div>
|
|
|
|
<script>
|
|
document.documentElement.offsetHeight;
|
|
n = document.getElementById("h3");
|
|
n.appendChild(document.createTextNode("Header"));
|
|
</script>
|
|
</body>
|
|
</html>
|