mirror of
https://github.com/videojs/video.js.git
synced 2025-04-02 22:25:42 +02:00
fix: Exit PIP if entering fullscreen (#8082)
* exit PIP if entering fullscreen * assert that entering full screen leaves PiP
This commit is contained in:
parent
9bda6be36c
commit
267b5c6bff
@ -2784,6 +2784,10 @@ class Player extends Component {
|
|||||||
* @fires Player#fullscreenchange
|
* @fires Player#fullscreenchange
|
||||||
*/
|
*/
|
||||||
requestFullscreen(fullscreenOptions) {
|
requestFullscreen(fullscreenOptions) {
|
||||||
|
if (this.isInPictureInPicture()) {
|
||||||
|
this.exitPictureInPicture();
|
||||||
|
}
|
||||||
|
|
||||||
const self = this;
|
const self = this;
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
@ -243,6 +243,29 @@ QUnit.test('full window can be preferred to fullscreen tech', function(assert) {
|
|||||||
player.dispose();
|
player.dispose();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
QUnit.test('fullscreen mode should exit picture-in-picture if it was enabled', function(assert) {
|
||||||
|
const player = FullscreenTestHelpers.makePlayer(false, {
|
||||||
|
preferFullWindow: true
|
||||||
|
});
|
||||||
|
|
||||||
|
const fakeExitPictureInPicture = sinon.replace(player, 'exitPictureInPicture', sinon.fake(() => {}));
|
||||||
|
|
||||||
|
player.fsApi_ = {};
|
||||||
|
player.tech_.supportsFullScreen = () => true;
|
||||||
|
|
||||||
|
assert.strictEqual(player.isFullscreen(), false, 'player should not be fullscreen initially');
|
||||||
|
player.isInPictureInPicture(true);
|
||||||
|
player.trigger('enterpictureinpicture');
|
||||||
|
assert.strictEqual(player.isInPictureInPicture(), true, 'player is in picture-in-picture');
|
||||||
|
|
||||||
|
assert.strictEqual(fakeExitPictureInPicture.called, false, 'should not have called exitPictureInPicture yet');
|
||||||
|
player.requestFullscreen();
|
||||||
|
assert.strictEqual(player.isFullscreen(), true, 'player should be fullscreen');
|
||||||
|
assert.strictEqual(fakeExitPictureInPicture.called, true, 'should have called exitPictureInPicture');
|
||||||
|
|
||||||
|
player.dispose();
|
||||||
|
});
|
||||||
|
|
||||||
QUnit.test('fullwindow mode should exit when ESC event triggered', function(assert) {
|
QUnit.test('fullwindow mode should exit when ESC event triggered', function(assert) {
|
||||||
const player = TestHelpers.makePlayer();
|
const player = TestHelpers.makePlayer();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user