silverwind

Results 1289 comments of silverwind

Yes, I will try to make a jsfiddle to demonstrate. If it really is `.innerHTML` causing this, I will remove the reference to Vue specifically.

Reproduced with these in Firefox, Chrome and Safari: - [WC in HTML content](https://jsfiddle.net/silverwind/2uhrds07/). children empty during `connectedCallback`. Mutation triggers. - [WC inserted via innerHTML](https://jsfiddle.net/silverwind/6ubh3fcr/). children available during `connectedCallback`. No mutations....

Can you share all related code so I see how you handle it? BTW, I think the second example with the `addEventListener('update')` is also poor, because I don't know what...

Thanks, I see you are using the same basic concept I do, the only difference is that you call `_onChildrenChanged` unconditionally while I actually verify presence of at least one...

Another variation of this hang occurs when trying to consume the clone body first and the body size is greater than `highWaterMark`. It will completely hang the v8 thread after...

Should have three themes: dark,light,auto. Default to auto which derives its initial value from [prefers-color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme). Auto theme could be as simple as ```css @import "./light.css" (prefers-color-scheme: light); @import "./dark.css" (prefers-color-scheme:...

I hide those errors with CSS. Ideally I would like to see these error rendering off by default.

I'd argue that this newline before the closing ` ``` ` should not be part of the code block's `.textContent` because it is never useful: - Users would not consider...

Been using [forks](https://github.com/silverwind/vitest-config-silverwind/blob/d590eee0746809f5f4573b2ebb58d64baab36d0b/index.js#L7) for a long time now without any issues to avoid the hangs, so I think it'd be a good default.

Some seemingly good news from upstream: https://github.com/nodejs/undici/issues/2026#issuecomment-2000017934