Christian Bewernitz
Christian Bewernitz
> Any news on an ES6 version of this? My previous comment is still the most up to date one. (Tldr: some tooling needs to currently be applied that is...
@taisukef thx for providing an example of what needs to be done to switch to modules and support deno. I still think we need to find a way to additionally...
Sorry for joining the conversation so late, but there is one issue that we need to be aware of: The DOM spec(s) only define interfaces for those things, but we...
Just to clarify: - ~[`getElementById` is a DOM Level 2 Spec](https://www.w3.org/TR/DOM-Level-2-Core/#core-ID-getElBId)~ That's wrong see my next comment - [`getElementsByClassName` was only introduced in the current "Living Standard"](https://dom.spec.whatwg.org/#dom-document-getelementsbyclassname) @dungmv I think...
I just started looking into this. First thing I now understood is that those method are already existing on the master branch as part of the `Document` prototype and this...
It's related to #58 in that it might be solvable with options for the serializer. But I'm not aware of anything in any Spec yet. (Other than not all Browsers...
For less switching back and forth between issues when reading this I'm replicating the relevant information here: I digged a bit into the details of testing SAX and existing sax...
From my current understanding of SAX parsers, I think the code in `lib/sax.js` is doing some things out of it's scope: https://github.com/xmldom/xmldom/blob/cad05a1499e0d30ee0c551ac8a5633385add55ea/lib/sax.js#L90-L93 ```js var doc = domBuilder.doc; var text =...
I have a general idea how to go about it, but only managed to do the first very tiny steps, was blocked by other more important/burning topics and low amount...
I double checked and we are not talking about strings created using the `String` function, but by using the `String` constructor like this: ```js var S = new String('hello'); ```...