172
edits
(Created page with "Counter proposal: navigator.telephony would return an object with the following interface interface Telephony : EventTarget { TelephonySession newSession(DOMString numbe...") |
No edit summary |
||
| Line 9: | Line 9: | ||
attribute Function onincoming; | attribute Function onincoming; | ||
} | } | ||
interface TelephonySession : EventTarget { | interface TelephonySession : EventTarget { | ||
readonly attribute DOMString originNumber; | readonly attribute DOMString originNumber; | ||
| Line 25: | Line 24: | ||
void hangUp(); | void hangUp(); | ||
} | } | ||
interface IncomingCallEvent : Event { | interface IncomingCallEvent : Event { | ||
readonly attribute TelephonySession session; | readonly attribute TelephonySession session; | ||
} | } | ||
edits