mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
407 B
HTML
19 lines
407 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function test() {
|
|
var div = document.createElement("div");
|
|
div.appendChild(document.createTextNode("text"));
|
|
document.body.appendChild(div);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="display: inline; margin: 0; padding: 0; border: 0">
|
|
<script>
|
|
document.body.offsetWidth;
|
|
test();
|
|
</script>
|
|
</body>
|
|
</html>
|