undom icon indicating copy to clipboard operation
undom copied to clipboard

Add Attribute class

Open tunnckoCore opened this issue 8 years ago • 1 comments

One more thing is to add Attribute, which should not inherit from Node, so this would be enough

class Attribute {
  constructor (name, value, ns) {
    this.nodeType = 2
    this.name = name
    this.value = value
    this.namespaceURI = ns
  }
}

I can PR with fixes and updates addressed in couple of issues, do you want such PR?

tunnckoCore avatar Sep 11 '17 18:09 tunnckoCore

This one is probably too strict for undom - we have to err on the side of minimalism. There are a bunch of nice spec-compliant DOM implementations out there, undom's value is in being tiny (and therein sometimes less compliant).

developit avatar Jan 22 '18 21:01 developit