I tried this piece of code and the result is false!
I'm running GWT 1.6 on Ubuntu 9.04
Document doc = XMLParser.createDocument();
Element elem = doc.createElement("chii");
elem.setAttribute("test", "ok?");
Attr attr1 = elem.getAttributeNode("test");
Attr attr2 = elem.getAttributeNode("test");
Window.alert(String.valueOf(attr1.equals(attr2)));
Is this a bug?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---