(name, value)
| 93 | return super.getAttribute(name); |
| 94 | } |
| 95 | setAttribute(name, value) { |
| 96 | if (this.#hasConnected /* jshint ignore:line */) { |
| 97 | switch (name) { |
| 98 | case 'row': |
| 99 | case 'col': |
| 100 | case 'zoom': |
| 101 | return; |
| 102 | } |
| 103 | } |
| 104 | super.setAttribute(name, value); |
| 105 | } |
| 106 | async connectedCallback() { |
| 107 | // initialization is done in connectedCallback, attribute initialization |
| 108 | // calls (which happen first) are effectively ignored, so we should be able |
no outgoing calls
no test coverage detected