()
| 1010 | } |
| 1011 | |
| 1012 | get protocol() { |
| 1013 | return StringPrototypeSlice(this.#context.href, 0, this.#context.protocol_end); |
| 1014 | } |
| 1015 | |
| 1016 | set protocol(value) { |
| 1017 | const href = bindingUrl.update(this.#context.href, updateActions.kProtocol, `${value}`); |
nothing calls this directly
no test coverage detected