()
| 71 | this.setAttribute('controlslist', value); |
| 72 | } |
| 73 | get width() { |
| 74 | return +window.getComputedStyle(this).width.replace('px', ''); |
| 75 | } |
| 76 | set width(val) { |
| 77 | //img.height or img.width setters change or add the corresponding attributes |
| 78 | this.setAttribute('width', val); |
nothing calls this directly
no test coverage detected