Caridy Patiño
Caridy Patiño
@jdalton can you provide more guidance on how to achieve this with the current API?
@rwaldron considering that we will have to roll with a version of this package that can work with iframes vs dom for quite some time, we should probably have this...
> **Current status** > > The failing tests in `test/membrane/*.spec.js` will pass if following changes are made: > > ```diff > + const { addEventListener, removeEventListener } = window; >...
@rwaldron I found the issue, basically, it is a bug in Safari TP, the global object MUST be an ordinary object but right now it is somehow exotic, e.g.: ```...
Some browses are using internal slots for Errors (Firefox, we are looking at you), which might interfere with the remapping mechanism because some accessors might through when an error is...
I have identified another small list of intrinsics that are present in node 12.x when creating a new VM: ``` [ 'BigUint64Array', 'BigInt64Array', 'BigInt', 'WebAssembly' ] ```
Just to clarify, this is not a problem in node where the unhandled rejection can be captured at the process level, e.g.: ```js // outer realm rejections process.on('unhandledRejection', error =>...
A related conversation happening here: https://github.com/tc39/proposal-realms/issues/212
@nicolo-ribaudo yes, it is observable. @erights examples is pretty clear! As discussed during the last meeting, a while back we arrived to a conclusion (or should I say a common...
@Jack-Works I agreed with you, in fact I was very surprised yesterday when looking at this. Maybe an implementer can provide more details about how this works today with trusted...