web-api-cat 0.7.22
Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.22 wires the Location API: `window.location` (also bound as global `location`) exposes `href` (read-write), `protocol` / `host` / `hostname` / `port` / `pathname` / `search` / `hash` / `origin` (read-only, parsed from href via the `url` crate), and methods `assign(url)` / `replace(url)` / `reload()` / `toString()`. Setters and methods record a NavigationIntent enum to a hidden slot that downstream consumers read via `location::read_pending_navigation(&env, &heap)` and clear with `clear_pending_navigation`. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.