blob: 0414baccd2820d8c1e6e4154ec39c3e40779e51d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<script>
function z()
{
var q = document.getElementById("q");
for (var r = 0; r < 100; ++r) {
// dump(r + "\n");
q.style.width = r + "px";
document.documentElement.offsetHeight;
}
}
</script>
</head>
<body onload="z();">
<div style="font-family: monospace;" id="q"><div id="w" style="word-spacing: 1px">AAA <span style="white-space: pre-line; font-weight: 500;">BB C
</span></div></div>
</body></html>
|