b-fuze

Results 60 comments of b-fuze

Oh no, it actually scrolls too fast for me. I was hoping less.

So I can use either of those to override the internal mappings or is it not possible atm? If anything I just want to scroll by one line and not...

Okay, thanks. Will this be in consideration for the future? (should I keep this issue open for now)

Also, I'd like to add that horizontal scrolling is too much atm, it should also be adjustable.

No, it won't be quick and easy unfortunately. There are quite a few things to consider before implementing SVG properly in Deno DOM, for example, having an actual XML parser....

This is likely an issue upstream with the `nwsapi` dependency... I'll have to look into why it's doing this :thinking:

Yeah. Dataset looks like it probably needs to be a `Proxy`... I'll get to work on it soon

I'm thinking of doing something like ```ts import { denoDom, DOMParser } from "https://deno.land/x/deno_dom/deno-dom-wasm.ts"; const doc = new DOMParser().parseFromString("foo", "text/html"); denoDom.setDocumentMetadata(doc, { uri: "https://example.org/example.html", referrer: "https://example.com/", }); console.log(doc.documentURI); // prints...

Yeah, I'd rather avoid extending the actual DOM API. What I think we can do to make it nicer is return the document from `setDocumentMetadata`. Something like: ```ts import {...

Can I ask why you need fragments?