diff --git a/src/js/player.js b/src/js/player.js index 2447b2e001..a5a8ecbad9 100644 --- a/src/js/player.js +++ b/src/js/player.js @@ -475,8 +475,6 @@ class Player extends Component { this.changingSrc_ = false; this.playWaitingForReady_ = false; this.playOnLoadstart_ = null; - - this.forceAutoplayInChrome_(); } /** @@ -2616,29 +2614,11 @@ class Player extends Component { if (value !== undefined) { this.techCall_('setAutoplay', value); this.options_.autoplay = value; - this.ready(this.forceAutoplayInChrome_); return; } return this.techGet_('autoplay', value); } - /** - * chrome started pausing the video when moving in the DOM - * causing autoplay to not continue due to how Video.js functions. - * See #4720 for more info. - * - * @private - */ - forceAutoplayInChrome_() { - if (this.paused() && - // read from the video element or options - (this.autoplay() || this.options_.autoplay) && - // only target desktop chrome - (browser.IS_CHROME && !browser.IS_ANDROID)) { - this.play(); - } - } - /** * Set or unset the playsinline attribute. * Playsinline tells the browser that non-fullscreen playback is preferred.