blob: 7fd91392d82cdc2e06b9e4afddf3954a35ce33d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html style="display: inline; 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="display: inline; margin: 0; padding: 0; border: 0">
<script>
document.body.offsetWidth;
test();
</script>
</body>
</html>
|