mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
19 lines
442 B
HTML
19 lines
442 B
HTML
<!DOCTYPE html>
|
|
<html style="margin: 0; padding: 0; border: 0">
|
|
<head>
|
|
<script>
|
|
function test() {
|
|
var div = document.createElement("div");
|
|
div.appendChild(document.createTextNode("text"));
|
|
document.documentElement.appendChild(div);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="margin: 0; padding: 0; border: 0">
|
|
<script>
|
|
document.body.offsetWidth;
|
|
test();
|
|
</script>
|
|
</body>
|
|
</html>
|