Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<script src="util.js"></script>
<script>
window.onload = function() {
document.head.appendChild(build_rule("div", 1, "{ color: blue; } "));
let dom = build_dom(2000, "div");
flush_layout();
perf_start();
document.body.appendChild(dom);
flush_style(dom);
perf_finish();
};
</script>
</head>
<body>
</body>
</html>