Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<meta charset="utf-8">
<style>
body { transform:translateY(100px); white-space: pre; }
p { margin: 0; }
span { padding: 2px; color: red; background: blue; }
</style>
<script>
function test(n) {
document.body.style.transform = "translateY(" + n + "px)";
if (n > 10) {
setTimeout("test(" + (n - 10) + ")", 0);
} else {
document.documentElement.removeAttribute("class");
}
}
</script>
</head>
<body onload="test(100)"><p> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> &nbsp; &nbsp; </p>
</body>
</html>