()
| 328 | get tintIntensity() { |
| 329 | return this._tintIntensity; |
| 330 | } |
| 331 | set tintIntensity(value) { |
| 332 | const newValue = Math.max(0, Math.min(1, value)); |
| 333 | if (newValue !== this._tintIntensity) { |
| 334 | this._tintIntensity = newValue; |
| 335 | if (this.hasImage) { |
| 336 | this.reblurCurrentImage(); |
| 337 | } |
nothing calls this directly
no outgoing calls
no test coverage detected