/**@class org.w3c.domts.level1.core.hc_namednodemapsetnameditemthatexists
@extends org.w3c.domts.DOMTestCase

     If the node to be added by the "setNamedItem(arg)" method 
    already exists in the NamedNodeMap, it is replaced by
    the new one.
    
    Retrieve the second employee and create a NamedNodeMap 
    object from the attributes of the last child by
    invoking the "getAttributes()" method.  Once the
    list is created an invocation of the "setNamedItem(arg)"
    method is done with arg=newAttr, where newAttr is a
    new Attr Node previously created and whose node name
    already exists in the map.  The "setNamedItem(arg)"
    method should replace the already existing node with
    the new one.   
    This node is then retrieved using the "getNamedItem(name)"
    method.  This test uses the "createAttribute(name)"
    method from the document interface
 @author Curt Arnold
 @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1025163788">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1025163788</a>
 @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-349467F9">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-349467F9</a>
*/
var hc_namednodemapsetnameditemthatexists = {

/**Runs the test case.
@throws Throwable Any uncaught exception causes test to fail
*/
runTest : function(  ) {},

/**Gets URI that identifies the test.
@return {String} uri identifier of test
*/
getTargetURI : function(  ) {},

/**Runs this test from the command line.
@param {Object {java.lang.String[]}} args command line arguments
*/
main : function(  ) {},


};