Example #1
0
 def setAttribute(self, name, value):
     Element.setAttribute(self, string.upper(name), value)
Example #2
0
 def getElementsByTagName(self, tagName):
     return Element.getElementsByTagName(self, string.upper(tagName))
Example #3
0
 def __init__(self, ownerDocument, nodeName):
     tagName = string.upper(nodeName)
     Element.__init__(self, ownerDocument, tagName, EMPTY_NAMESPACE,
                      EMPTY_PREFIX, tagName)
Example #4
0
 def setAttribute(self, name, value):
     Element.setAttribute(self, string.upper(name), value)
Example #5
0
 def getElementsByTagName(self, tagName):
     return Element.getElementsByTagName(self, string.upper(tagName))
Example #6
0
 def __init__(self, ownerDocument, nodeName):
     tagName = string.upper(nodeName)
     Element.__init__(self, ownerDocument, tagName, EMPTY_NAMESPACE, EMPTY_PREFIX, tagName)