Alex Early
Alex Early
It's not related to workspace switching or the popup -- that always stays fast and responsive. Only the creation of new windows becomes slow.
I'm still seeing slowdowns over time. There may be another issue still at play.
I ran into this same issue, at least with setting/reading properties in constructors. I think when parsing html, it needs to defer upgrading custom elements until the entire string has...
I looked into this some more, and I don't think it's possible to work around, if you're trying to access attributes in constructors. In pseudocode HappyDom does something similar to:...
I also can't reproduce your issue with `connectedCallback` logic, only if I put that logic in the constructors. You test cases pass for me.
Animations come from this PR: https://github.com/caolan/async/pull/216 . I guess GH doesn't allow hotlinking from issues anymore, or the sig expired.
I'd be open to the babel update. I'd also want to make sure `babel-plugin-add-module-exports` does not significantly change the output or add too much extra boilerplate for "correctness" we don't...
This is expected behavior, and is called out on the first page of the drugs under the common pitfalls section under "subtle memory leaks" as a way to cancel a...
This does pique my interest a bit, but would need to see benchmarks. Some of these optimization techniques may no longer apply in recent versions of V8, or may not...