File tree 4 files changed +32
-19
lines changed
4 files changed +32
-19
lines changed Original file line number Diff line number Diff line change @@ -1362,11 +1362,6 @@ interface RTCIceCandidateInit {
1362
1362
usernameFragment?: string | null;
1363
1363
}
1364
1364
1365
- interface RTCIceCandidatePair {
1366
- local: RTCIceCandidate;
1367
- remote: RTCIceCandidate;
1368
- }
1369
-
1370
1365
interface RTCIceCandidatePairStats extends RTCStats {
1371
1366
availableIncomingBitrate?: number;
1372
1367
availableOutgoingBitrate?: number;
@@ -18356,6 +18351,11 @@ declare var RTCIceCandidate: {
18356
18351
new(candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;
18357
18352
};
18358
18353
18354
+ interface RTCIceCandidatePair {
18355
+ local: RTCIceCandidate;
18356
+ remote: RTCIceCandidate;
18357
+ }
18358
+
18359
18359
interface RTCIceTransportEventMap {
18360
18360
"gatheringstatechange": Event;
18361
18361
"selectedcandidatepairchange": Event;
Original file line number Diff line number Diff line change 2086
2086
]
2087
2087
}
2088
2088
},
2089
+ "RTCIceCandidatePair" : {
2090
+ // https://github.com/w3c/webrtc-pc/pull/2961 made this from dictionary to interface,
2091
+ // but nobody did the change as of 2024-06.
2092
+ // For now let's roll this back to the dictionary form.
2093
+ "exposed" : " Window" ,
2094
+ "noInterfaceObject" : true ,
2095
+ "properties" : {
2096
+ "property" : {
2097
+ "local" : {
2098
+ "readonly" : false
2099
+ },
2100
+ "remote" : {
2101
+ "readonly" : false
2102
+ }
2103
+ }
2104
+ }
2105
+ },
2089
2106
"RTCPeerConnection" : {
2090
2107
"events" : {
2091
2108
"event" : [
3122
3139
]
3123
3140
}
3124
3141
},
3125
- "MIDIInputMap" : {
3126
- "iterator" : {
3127
- // https://github.com/mdn/browser-compat-data/pull/18352
3128
- "exposed" : " Window"
3129
- }
3130
- },
3131
3142
"MIDIPort" : {
3132
3143
"events" : {
3133
3144
"event" : [
Original file line number Diff line number Diff line change 23
23
"value" : [
24
24
" enterpictureinpicture" , // Blink only as of 2023-10
25
25
" hangup" , // Blink only as of 2022-09
26
- " nextslide" , // No implementation as of 2022-09
27
- " previousslide" , // No implementation as of 2022-09
26
+ " nextslide" , // Blink only as of as of 2024-06
27
+ " previousslide" , // Blink only as of as of 2024-06
28
28
" togglecamera" , // Blink only as of 2022-09
29
- " togglemicrophone" // Blink only as of 2022-09
29
+ " togglemicrophone" , // Blink only as of 2022-09
30
+ " togglescreenshare" // No implementation as of 2022-09
30
31
]
31
32
},
32
33
"RequestDestination" : {
234
235
"CredentialCreationOptions" : {
235
236
"members" : {
236
237
"member" : {
237
- "federated" : null ,
238
- "password" : null
238
+ "federated" : null , // Blink only as of 2024-06
239
+ "password" : null , // Blink only as of 2024-06
240
+ "mediation" : null // WebKit only as of 2024-06
239
241
}
240
242
}
241
243
},
You can’t perform that action at this time.
0 commit comments