Skip to content

Implement interface NamedNodeMap #19

@hepheir

Description

@hepheir
Owner

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

self-assigned this
on Jun 3, 2021
added
type:othersissues not falling in bug, perfromance, support, build and install or feature
and removed
enhancementNew feature or request
type:othersissues not falling in bug, perfromance, support, build and install or feature
on Jun 7, 2021
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

      Participants

      @hepheir

      Issue actions

        Implement interface `NamedNodeMap` · Issue #19 · hepheir/Python-HTML-Parser