Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.getElementById("r").appendChild(document.createTextNode("B"));
}
</script>
</head>
<body onload="boom();">
<div id="r" style="display: grid;">A</div>
</body>
</html>