chromium/content/test/data/accessibility/event/add-child-of-body.html

<!DOCTYPE html>
<html>
<body>
<div>Hello</div>
<script>
  function go() {
    var div = document.createElement('div');
    div.textContent = 'world';
    document.body.appendChild(div);
  }
</script>
</body>
</html>