* @param {string} href
(href)
| 494 | * @param {string} href |
| 495 | */ |
| 496 | replace(href) { |
| 497 | this.set_(href); |
| 498 | if (this.history_) { |
| 499 | this.history_.replaceState( |
| 500 | null, |
| 501 | '', |
| 502 | this.url_.href, |
| 503 | /* fireEvent */ true |
| 504 | ); |
| 505 | } |
| 506 | this.change_({replace: true}); |
| 507 | } |
| 508 | |
| 509 | /** |
| 510 | * @param {boolean} forceReload |
no test coverage detected