* @param {string} href
(href)
| 463 | * @param {string} href |
| 464 | */ |
| 465 | set_(href) { |
| 466 | const oldHash = this.url_.hash; |
| 467 | this.url_ = parseUrlDeprecated(resolveRelativeUrl(href, this.url_)); |
| 468 | if (this.url_.hash != oldHash) { |
| 469 | this.win.eventListeners.fire({type: 'hashchange'}); |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | /** |
| 474 | * @param {!Object} args |
no test coverage detected