| OLD | NEW |
| 1 # speech api not enabled in webview, crbug.com/487255 | 1 # speech api not enabled in webview, crbug.com/487255 |
| 2 interface SpeechSynthesisEvent : Event | 2 interface SpeechSynthesisEvent : Event |
| 3 interface SpeechSynthesisUtterance : EventTarget | 3 interface SpeechSynthesisUtterance : EventTarget |
| 4 interface webkitSpeechGrammar | 4 interface webkitSpeechGrammar |
| 5 interface webkitSpeechGrammarList | 5 interface webkitSpeechGrammarList |
| 6 interface webkitSpeechRecognition : EventTarget | 6 interface webkitSpeechRecognition : EventTarget |
| 7 interface webkitSpeechRecognitionError : Event | 7 interface webkitSpeechRecognitionError : Event |
| 8 interface webkitSpeechRecognitionEvent : Event | 8 interface webkitSpeechRecognitionEvent : Event |
| 9 | 9 |
| 10 # permissions api not enabled in webview, crbug.com/490120 | 10 # permissions api not enabled in webview, crbug.com/490120 |
| 11 interface PermissionStatus : EventTarget | 11 interface PermissionStatus : EventTarget |
| 12 interface Permissions | 12 interface Permissions |
| 13 | 13 |
| 14 # notifications api not enabled in webview, crbug.com/434712 | 14 # notifications api not enabled in webview, crbug.com/434712 |
| 15 interface Notification : EventTarget | 15 interface Notification : EventTarget |
| 16 | 16 |
| 17 # web payments api not enabled in webiew, crbug.com/667069 |
| 18 interface PaymentAddress |
| 19 interface PaymentRequest : EventTarget |
| 20 interface PaymentRequestUpdateEvent : Event |
| 21 interface PaymentResponse |
| 22 |
| 17 # not yet supported in webview and chrome on android in general, crbug.com/15457
1 | 23 # not yet supported in webview and chrome on android in general, crbug.com/15457
1 |
| 18 interface SharedWorker : EventTarget | 24 interface SharedWorker : EventTarget |
| 19 | 25 |
| 20 # push API not supported in webview, crbug.com/421921 | 26 # push API not supported in webview, crbug.com/421921 |
| 21 interface PushManager | 27 interface PushManager |
| 22 interface PushSubscription | 28 interface PushSubscription |
| 23 interface PushSubscriptionOptions | 29 interface PushSubscriptionOptions |
| 24 | 30 |
| 25 # presentation api not supported in webview crbug.com/521319 | 31 # presentation api not supported in webview crbug.com/521319 |
| 26 interface Presentation | 32 interface Presentation |
| 27 interface PresentationAvailability : EventTarget | 33 interface PresentationAvailability : EventTarget |
| 28 interface PresentationConnection : EventTarget | 34 interface PresentationConnection : EventTarget |
| 29 interface PresentationConnectionAvailableEvent : Event | 35 interface PresentationConnectionAvailableEvent : Event |
| 30 interface PresentationConnectionCloseEvent : Event | 36 interface PresentationConnectionCloseEvent : Event |
| 31 interface PresentationRequest : EventTarget | 37 interface PresentationRequest : EventTarget |
| 32 | 38 |
| 33 # remoteplayback api not supported in webview crbug.com/521319 | 39 # remoteplayback api not supported in webview crbug.com/521319 |
| 34 interface RemotePlayback : EventTarget | 40 interface RemotePlayback : EventTarget |
| 35 | 41 |
| 42 # web payments api not enabled in webiew, crbug.com/667069 |
| 43 interface HTMLIFrameElement : HTMLElement |
| 44 setter allowPaymentRequest |
| 45 |
| 36 # Android does not support switching the audio output device, crbug.com/589500 | 46 # Android does not support switching the audio output device, crbug.com/589500 |
| 37 # Remote Playback API is not supported on Android WebView, crbug.com/521319 | 47 # Remote Playback API is not supported on Android WebView, crbug.com/521319 |
| 38 interface HTMLMediaElement : HTMLElement | 48 interface HTMLMediaElement : HTMLElement |
| 39 getter sinkId # crbug.com/589500 | 49 getter sinkId # crbug.com/589500 |
| 40 method setSinkId # crbug.com/589500 | 50 method setSinkId # crbug.com/589500 |
| 41 setter disableRemotePlayback # crbug.com/521319 | 51 setter disableRemotePlayback # crbug.com/521319 |
| 42 getter disableRemotePlayback # crbug.com/521319 | 52 getter disableRemotePlayback # crbug.com/521319 |
| 43 getter remote # crbug.com/521319 | 53 getter remote # crbug.com/521319 |
| 44 | 54 |
| 45 # permissions API (crbug.com/490120), presentation API (crbug.com/521319) and | 55 # permissions API (crbug.com/490120), presentation API (crbug.com/521319) and |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 attribute gamepadController # test only | 87 attribute gamepadController # test only |
| 78 attribute GCController # test only | 88 attribute GCController # test only |
| 79 getter speechSynthesis # Speech API, crbug.com/487255 | 89 getter speechSynthesis # Speech API, crbug.com/487255 |
| 80 attribute chrome # crbug.com/618471 | 90 attribute chrome # crbug.com/618471 |
| 81 method gc # test only | 91 method gc # test only |
| 82 method webkitRequestFileSystem # File System API, crbug.com/589843 | 92 method webkitRequestFileSystem # File System API, crbug.com/589843 |
| 83 method webkitResolveLocalFileSystemURL # File System API, crbug.com/589843 | 93 method webkitResolveLocalFileSystemURL # File System API, crbug.com/589843 |
| 84 | 94 |
| 85 # TODO(timvolodine): check screen orientation lock api | 95 # TODO(timvolodine): check screen orientation lock api |
| 86 # TODO(timvolodine): check notifications in service workers | 96 # TODO(timvolodine): check notifications in service workers |
| OLD | NEW |