tmsns
tmsns
I've been meddling with `manualChunks` a lot the last few months. Would it help your case if you define in `manualChunks` that `specialLogger` should be assigned to the same chunk...
@googlebot I signed it!
Hey @aomarks, I see you assigned yourself to this PR. Can I help with anything? 😊
The issue resides here: https://github.com/webcomponents/polyfills/blob/master/packages/shadydom/src/patches/Node.js#L463 The two functions should only be executed if `node` and `ref_node` are different. If you guys like, I can send in a MR? 😃
Well, to be honest, it's not 100% clear to me either. As you can see, the code to reproduce the error is the polyfill and a simple iframe on the...
You can actually see that devtools is triggering the throwing `Object.getOwnPropertyNames(window)` by adding some DOM manipulation in the `catch` clause.
`Object.getOwnPropertyNames` exists natively on IE11, it's `Object.getOwnPropertySymbols` that doesn't exist, right? 🙈 This polyfill overrides the default implementation of `Object.getOwnPropertyNames` to filter away the properties that act as a `Symbol`....
> aha, interesting Yeah, I found that interesting as well. :-) It does remind me on how other polyfills also impact how devtools is behaving (eg. webcomponents polyfill) Had not...
The highlighted technique is an exclusion list. What exclusions were you thinking of? Also, when you talk about depending on `object-keys`, do you mean using it instead of relying on...
I have seen this problem as well. It seems that loaded modules are shared across runs of test files, across different wtr-sessions. This is weird, of course, as each session...