mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
In certain cases Angular hydration logic can not rely on the order in which elements are present in a template (for example, in content-projection use-cases) and there is a need to serialize a path from one node to another, so that hydration can locate an element on a page. The logic attempts to use an immediate parent element as an anchor and compute the path from it. If it fails - the path is computed starting from the <body> (this is a fallback). This commit updates the logic to walk up the parents tree if an immediate parent (from a template) is disconnected from the DOM. This helps to shorten the lookup path and make it more stable. PR Close #53317 |
||
|---|---|---|
| .. | ||
| BUILD.bazel | ||
| hydration_spec.ts | ||
| integration_spec.ts | ||
| transfer_state_spec.ts | ||