scala-js / scala-js-dom

Statically typed DOM API for Scala.js
Other
315 stars 160 forks source link

Remove attributes class members from Node #772

Closed andriygm closed 1 year ago

andriygm commented 1 year ago

Currently, the Node class contains members not present in JavaScript's Node class. Namely,

def attributes: NamedNodeMap = js.native def hasAttributes(): Boolean = js.native

These should be removed.