You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
Model the engine's real ContextProxy routing: each thread now owns its own getCoreContext()/getJSContext() proxy pair, and an event whose target equals the dispatching proxy's origin is delivered locally instead of crossing threads (matching context_proxy.cc). Previously both contexts shared one event bus, so wrong-direction dispatches (e.g. lynx.getCoreContext().dispatchEvent(...) from the main thread) still reached the other thread in tests while silently failing on real devices. (#3351)