()
| 965 | } |
| 966 | |
| 967 | get href() { |
| 968 | // Updates to URLSearchParams are lazily propagated to URL, so we need to check we're in sync. |
| 969 | this.#ensureSearchParamsUpdated(); |
| 970 | return this.#context.href; |
| 971 | } |
| 972 | |
| 973 | set href(value) { |
| 974 | value = `${value}`; |
nothing calls this directly
no test coverage detected