зеркало из https://github.com/mozilla/gecko-dev.git
32 строки
967 B
JavaScript
32 строки
967 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
function closeFullScreen() {
|
|
sendAsyncMessage("Browser:FullScreenVideo:Close");
|
|
}
|
|
|
|
function startPlayback(aEvent) {
|
|
let target = aEvent.originalTarget;
|
|
Content._sendMouseEvent("mousemove", target, 0, 0);
|
|
Content._sendMouseEvent("mousedown", target, 0, 0);
|
|
Content._sendMouseEvent("mouseup", target, 0, 0);
|
|
}
|
|
|
|
addEventListener("click", function(aEvent) {
|
|
if (aEvent.target.id == "close")
|
|
closeFullScreen();
|
|
}, false);
|
|
|
|
addEventListener("CloseVideo", closeFullScreen, false);
|
|
addEventListener("StartVideo", startPlayback, false);
|
|
|
|
addEventListener("PlayVideo", function() {
|
|
sendAsyncMessage("Browser:FullScreenVideo:Play");
|
|
}, false);
|
|
|
|
addEventListener("PauseVideo", function() {
|
|
sendAsyncMessage("Browser:FullScreenVideo:Pause");
|
|
}, false);
|
|
|