(evt)
| 344 | } |
| 345 | |
| 346 | function componentInitialized (evt) { |
| 347 | if (evt.detail.name !== 'material') { return; } |
| 348 | el.addEventListener('componentchanged', componentChanged); |
| 349 | el.setAttribute('material', 'color', 'red'); |
| 350 | } |
| 351 | |
| 352 | el.addEventListener('componentinitialized', componentInitialized); |
| 353 | el.setAttribute('material', 'color', 'red'); |
nothing calls this directly
no test coverage detected