Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function boom()
{
// Force frame construction
document.documentElement.offsetHeight;
// A dynamic change
var x = document.getElementById("x");
x.remove();
}
</script>
</head>
<body onload="boom();">
<div><span>&#x0661;<span id="x"></span>&#x0663;</span>&#x062A;</div>
</body>
</html>