refactor: make the renderer own DOM application and range indexes - #384
Merged
Conversation
smiggleworth
marked this pull request as ready for review
September 5, 2026 01:21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Runtime execution previously inspected and mutated browser nodes directly, while host metadata and range registration had several independent writers. Scheduled DOM application, fast-path classification, event delegation, portal detachment, and child-scope restoration now live behind renderer capabilities. Resource helpers own browser activity checks with existing server defaults preserved.
The renderer maintains host indexes centrally and uses one range registry for native owners and public evaluation contexts. Shared wrapper components resolve to the same active range; departed registrations are cleared, and stale publication cannot redirect a disposed or hydration-adopted owner. Native records retain direct range indexes; extension context objects remain untouched. Existing custom-host callbacks, receivers, argument lists, and frozen public declarations remain compatible.
Validation:
docs/benchmarks/core-renderer-fe12030.json; no optimization claim is made.Fourth PR in the core consolidation series, following #381, #382, and #383. Transaction unification follows in the next PR.