Correct test for Issue 436

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1276 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2010-01-22 01:48:57 +00:00
parent df3b22470c
commit 6eba334074
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@
var t = document.getElementById("the-text"); var t = document.getElementById("the-text");
equals(true, (t && t.getAttribute("d") == "text"), "Did not import <text> element"); equals(true, (t && t.nodeName == "text"), "Did not import <text> element");
equals(null, t.getAttribute("d"), "Imported a <text> with a d attribute"); equals(null, t.getAttribute("d"), "Imported a <text> with a d attribute");
}); });