blob: c07899386a3982b564c56afc61696587bcf5b94d (
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 style="overflow-y: scroll">
<head>
<meta charset="UTF-8">
<script src="util.js"></script>
<script>
window.onload = function() {
const TEST_WORD = "iqwdzx zzaعظأkvcg rvde";
let div = document.getElementById("test");
div.textContent = TEST_WORD;
flush_layout();
perf_start();
div.textContent = build_text(TEST_WORD, 30, 800);
flush_layout(div);
perf_finish();
};
</script>
</head>
<body>
<div id="test" style="white-space: normal"></div>
</body>
</html>
|