hepheir / Python-HTML-Parser

🔥 beautifulsoup으로는 만족못해서 만들어보는 Python3.9 버전의 html 파싱기
MIT License
2 stars 0 forks source link

Implement interface `NamedNodeMap` #19

Open hepheir opened 3 years ago

hepheir commented 3 years ago

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

Methods