Skip to content

Commit f090f7f

Browse files
committed
Merge
2 parents f73b23b + 419622d commit f090f7f

File tree

3 files changed

+13
-31
lines changed

3 files changed

+13
-31
lines changed

inputfiles/addedTypes.jsonc

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -301,10 +301,6 @@
301301
}
302302
}
303303
},
304-
"IDBOpenDBRequest": {
305-
"name": "IDBOpenDBRequest",
306-
"extends": "IDBRequest<IDBDatabase>"
307-
},
308304
"HTMLInputElement": {
309305
"properties": {
310306
"property": {
@@ -314,32 +310,6 @@
314310
}
315311
}
316312
},
317-
// The spec removed `timestamp` but browsers still have it.
318-
// https://github.com/w3c/webrtc-encoded-transform/pull/204
319-
"RTCEncodedAudioFrame": {
320-
"properties": {
321-
"property": {
322-
"timestamp": {
323-
"mdnUrl": "https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp",
324-
"name": "timestamp",
325-
"type": "long long",
326-
"readonly": true
327-
}
328-
}
329-
}
330-
},
331-
"RTCEncodedVideoFrame": {
332-
"properties": {
333-
"property": {
334-
"timestamp": {
335-
"mdnUrl": "https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp",
336-
"name": "timestamp",
337-
"type": "long long",
338-
"readonly": true
339-
}
340-
}
341-
}
342-
},
343313
"RuntimeError": {
344314
"name": "RuntimeError",
345315
"extends": "Error",

inputfiles/patches/indexeddb.kdl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ interface IDBRequest {
66
property result overrideType=T
77
}
88

9+
interface IDBOpenDBRequest extends=IDBRequest<IDBDatabase>
10+
911
type-def IDBValidKey {
1012
type long
1113
type DOMString
@@ -14,4 +16,4 @@ type-def IDBValidKey {
1416
type sequence {
1517
type IDBValidKey
1618
}
17-
}
19+
}

inputfiles/patches/webrtc-encoded-transform.kdl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
// https://w3c.github.io/webrtc-encoded-transform/
22

3+
// The spec removed `timestamp` but browsers still have it as of 2025-12
4+
// https://github.com/w3c/webrtc-encoded-transform/pull/204
5+
interface RTCEncodedAudioFrame {
6+
property timestamp type="long long" readonly=#true mdnUrl="https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp"
7+
}
8+
9+
interface RTCEncodedVideoFrame {
10+
property timestamp type="long long" readonly=#true mdnUrl="https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp"
11+
}
12+
313
removals {
414
dictionary RTCEncodedAudioFrameMetadata {
515
member audioLevel // No implementation as of 2025-05

0 commit comments

Comments
 (0)