Skip to content

Implement interface NamedNodeMap #19

Description

@hepheir

https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1780488922

Interface NamedNodeMap

IDL Definition

More
interface NamedNodeMap {
  Node                      getNamedItem(in DOMString name);
  Node                      setNamedItem(in Node arg)
                                         raises(DOMException);
  Node                      removeNamedItem(in DOMString name)
                                            raises(DOMException);
  Node                      item(in unsigned long index);
  readonly attribute  unsigned long        length;
};

Attributes

  • readonly attribute unsigned long length

Methods

  • Node getNamedItem(in DOMString name)
  • Node setNamedItem(in Node arg)
  • Node removeNamedItem(in DOMString name)
  • Node item(in unsigned long index)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions