()
| 79 | // } |
| 80 | // } |
| 81 | get href() { |
| 82 | if (this.hasAttribute('href')) { |
| 83 | return new URL(this.getAttribute('href'), this.getBase()).href; |
| 84 | } else if (this.hasAttribute('tref')) { |
| 85 | return this.resolve(); |
| 86 | } |
| 87 | } |
| 88 | set href(val) { |
| 89 | // improve this |
| 90 | if (val) { |
nothing calls this directly
no test coverage detected