RE: Defining a constructor for Element and friends

From: Ryosuke Niwa [mailto:rniwa@apple.com] 

> Shouldn't we throw in this case because the concert type of "somename" is HTMLUnknownElement?

Yes, that's exactly the current design. Hidden a bit:

https://github.com/domenic/element-constructors/blob/master/element-constructors.js#L4


This still leaves the potential hazard of someone doing `new HTMLUnknownElement("somename")` and their code breaking later once "someone" becomes a real tag... hopefully the "Unknown" is a bit more of a deterrent though?

(It'd be nice if HTMLElement weren't a global and you had to do `import HTMLElement from "html/parser-internals"` or something. Ah well.)

Received on Tuesday, 13 January 2015 18:46:14 UTC