You’re short an “h” in your namespace
Was
var text = document.createElementNS('ttp://www.w3.org/2000/svg', 'text');
should be
var text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
You’re short an “h” in your namespace
Was
var text = document.createElementNS('ttp://www.w3.org/2000/svg', 'text');
should be
var text = document.createElementNS('http://www.w3.org/2000/svg', 'text');