(name, oldValue, newValue)
| 32 | } |
| 33 | |
| 34 | attributeChangedCallback(name, oldValue, newValue) { |
| 35 | console.log("Custom square element attributes changed."); |
| 36 | updateStyle(this); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | customElements.define("custom-square", Square); |
nothing calls this directly
no test coverage detected