* @override
(unusedIsAutoplay)
| 520 | * @override |
| 521 | */ |
| 522 | play(unusedIsAutoplay) { |
| 523 | Promise.resolve().then(() => { |
| 524 | dispatchCustomEvent(this.element, VideoEvents_Enum.PLAYING); |
| 525 | this.timeoutId_ = this.timer_.delay(() => { |
| 526 | this.currentTime_ = this.duration_; |
| 527 | dispatchCustomEvent(this.element, VideoEvents_Enum.PAUSE); |
| 528 | }, this.length_); |
| 529 | }); |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * @override |
no test coverage detected