Safari Button Rendering Bug

Version 1.1 by mflorea on 2010/07/05 19:04

function doAdd() {
  var button = document.createElement('button');
  button.appendChild(document.createTextNode('Action'));
  var container = document.getElementById('container');
  container.appendChild(button);
  container.appendChild(document.createTextNode(''))
}