mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
62
dom/media/tests/mochitest/NetworkPreparationChromeScript.js
Normal file
62
dom/media/tests/mochitest/NetworkPreparationChromeScript.js
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
const { classes: Cc, interfaces: Ci, results: Cr, utils: Cu } = Components;
|
||||
const { Services } = Cu.import('resource://gre/modules/Services.jsm');
|
||||
|
||||
var browser = Services.wm.getMostRecentWindow('navigator:browser');
|
||||
var connection = browser.navigator.mozMobileConnections[0];
|
||||
|
||||
// provide a fake APN and enable data connection.
|
||||
function enableDataConnection() {
|
||||
let setLock = browser.navigator.mozSettings.createLock();
|
||||
setLock.set({
|
||||
'ril.data.enabled': true,
|
||||
'ril.data.apnSettings': [
|
||||
[
|
||||
{'carrier':'T-Mobile US',
|
||||
'apn':'epc.tmobile.com',
|
||||
'mmsc':'http://mms.msg.eng.t-mobile.com/mms/wapenc',
|
||||
'types':['default','supl','mms']}
|
||||
]
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
// enable 3G radio
|
||||
function enableRadio() {
|
||||
if (connection.radioState !== 'enabled') {
|
||||
connection.setRadioEnabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
// disable 3G radio
|
||||
function disableRadio() {
|
||||
if (connection.radioState === 'enabled') {
|
||||
connection.setRadioEnabled(false);
|
||||
}
|
||||
}
|
||||
|
||||
addMessageListener('prepare-network', function(message) {
|
||||
connection.addEventListener('datachange', function onDataChange() {
|
||||
if (connection.data.connected) {
|
||||
connection.removeEventListener('datachange', onDataChange);
|
||||
Services.prefs.setIntPref('network.proxy.type', 2);
|
||||
sendAsyncMessage('network-ready', true);
|
||||
}
|
||||
});
|
||||
|
||||
enableRadio();
|
||||
enableDataConnection();
|
||||
});
|
||||
|
||||
addMessageListener('network-cleanup', function(message) {
|
||||
connection.addEventListener('datachange', function onDataChange() {
|
||||
if (!connection.data.connected) {
|
||||
connection.removeEventListener('datachange', onDataChange);
|
||||
Services.prefs.setIntPref('network.proxy.type', 2);
|
||||
sendAsyncMessage('network-disabled', true);
|
||||
}
|
||||
});
|
||||
disableRadio();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue