I volontari di MDN non hanno ancora tradotto questo articolo in Italiano. Registrati per tradurlo tu.
Non-standard
This feature is not on a current W3C standards track, but it is supported on the Firefox OS platform. Although implementations may change in the future and it is not supported widely across browsers, it is suitable for use in code dedicated to Firefox OS apps.
This API is available on Firefox OS for internal applications only.
The CallEvent interface of the Web Telephony API represents events related to telephone calls.
Properties
CallEvent.callRead only- A
TelephonyCallobject representing the call from which the event originated.
Examples
// Telephony object
var tel = navigator.mozTelephony;
// Receive a call
tel.onincoming = function(e) {
var incomingCall = e.call;
// Answer the call
incomingCall.answer();
};
Specifications
| Specification | Status | Comment |
|---|---|---|
| Web Telephony | Draft | Draft |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | Not supported | Not supported | Not supported | Not supported | Not supported |
| Feature | Android | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | Not supported | 12.0 (12.0) | 1.0.1 | Not supported | Not supported | Not supported |
See also
Etichette del documento e nomi di chi ha collaborato alla sua stesura
Etichette:
Contributors to this page: Sebastianz, chrisdavidmills, fscholz, MHasan, tregagnon, Jeremie, teoli, Sheppy
Ultima modifica di:
Sebastianz,

