Fix thinko to make a test actually test what it was supposed to test, no bug

This commit is contained in:
Jeff Walden 2009-04-06 14:14:10 -07:00
Родитель 2fbd5745fc
Коммит a29f180b01
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -141,7 +141,7 @@ HTML_TAG("wbr", "Shared")
HTML_TAG("xmp", "Span")
function SVG_TAG(name) {
allNodes.push(document.createElementNS("http://www.w3.org/2000/svg", "svg"));
allNodes.push(document.createElementNS("http://www.w3.org/2000/svg", name));
}
// List sorta stolen from SVG element factory.