()
| 1035 | } |
| 1036 | |
| 1037 | get password() { |
| 1038 | if (this.#context.host_start - this.#context.username_end > 0) { |
| 1039 | return StringPrototypeSlice(this.#context.href, this.#context.username_end + 1, this.#context.host_start); |
| 1040 | } |
| 1041 | return ''; |
| 1042 | } |
| 1043 | |
| 1044 | set password(value) { |
| 1045 | const href = bindingUrl.update(this.#context.href, updateActions.kPassword, `${value}`); |
no test coverage detected