()
| 144 | } |
| 145 | |
| 146 | _didRender() { |
| 147 | const svg = this.shadowRoot.getElementById('svg'); |
| 148 | this._clearNode(svg); |
| 149 | const s = this.getBoundingClientRect(); |
| 150 | svg.setAttribute("width", s.width); |
| 151 | svg.setAttribute("height", s.height); |
| 152 | wired.rectangle(svg, 0, 0, s.width, s.height); |
| 153 | this.classList.remove('pending'); |
| 154 | if (typeof this._value !== 'undefined') { |
| 155 | this.input.value = this._value; |
| 156 | delete this._value; |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | customElements.define('wired-input', WiredInput); |
nothing calls this directly
no test coverage detected