node-datachannel 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build-linux.yml +7 -2
- package/CMakeLists.txt +1 -1
- package/cmake/toolchain/ci.cmake +1 -1
- package/examples/electron-demo/package-lock.json +316 -372
- package/examples/electron-demo/package.json +2 -1
- package/examples/electron-demo/webpack.main.config.js +10 -0
- package/jest.config.cjs +1 -1
- package/package.json +2 -2
- package/polyfill/RTCError.d.ts +11 -0
- package/polyfill/RTCError.js +65 -0
- package/polyfill/RTCIceCandidate.js +22 -23
- package/polyfill/RTCPeerConnection.js +11 -3
- package/polyfill/index.cjs +100 -25
- package/polyfill/index.js +3 -0
- package/test/wpt-tests/last-test-results.md +103 -7
- package/test/wpt-tests/package.json +1 -1
- package/test/wpt-tests/wpt-test-list.js +18 -16
|
@@ -7,7 +7,6 @@ export default [
|
|
|
7
7
|
'/webrtc/recvonly-transceiver-can-become-sendrecv.https.html',
|
|
8
8
|
'/webrtc/RollbackEvents.https.html',
|
|
9
9
|
'/webrtc/RTCCertificate.html',
|
|
10
|
-
// // '/webrtc/RTCCertificate-postMessage.html', // SKIP, iframe
|
|
11
10
|
'/webrtc/RTCConfiguration-bundlePolicy.html',
|
|
12
11
|
'/webrtc/RTCConfiguration-iceCandidatePoolSize.html',
|
|
13
12
|
'/webrtc/RTCConfiguration-iceServers.html',
|
|
@@ -15,26 +14,22 @@ export default [
|
|
|
15
14
|
'/webrtc/RTCConfiguration-rtcpMuxPolicy.html',
|
|
16
15
|
'/webrtc/RTCConfiguration-validation.html',
|
|
17
16
|
'/webrtc/RTCDataChannel-bufferedAmount.html',
|
|
18
|
-
// '/webrtc/RTCDataChannel-close.html', // Not ending
|
|
19
17
|
'/webrtc/RTCDataChannelEvent-constructor.html',
|
|
20
|
-
// '/webrtc/RTCDataChannel-GC.html', // Not ending
|
|
21
18
|
'/webrtc/RTCDataChannel-iceRestart.html',
|
|
22
19
|
'/webrtc/RTCDataChannel-id.html',
|
|
23
20
|
'/webrtc/RTCDataChannel-send-blob-order.html',
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// '/webrtc/RTCIceTransport.html',
|
|
35
|
-
// '/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html',
|
|
21
|
+
'/webrtc/RTCDtlsTransport-getRemoteCertificates.html',
|
|
22
|
+
'/webrtc/RTCDtlsTransport-state.html',
|
|
23
|
+
'/webrtc/RTCDTMFSender-insertDTMF.https.html',
|
|
24
|
+
'/webrtc/RTCDTMFSender-ontonechange.https.html',
|
|
25
|
+
'/webrtc/RTCDTMFSender-ontonechange-long.https.html',
|
|
26
|
+
'/webrtc/RTCError.html',
|
|
27
|
+
'/webrtc/RTCIceCandidate-constructor.html',
|
|
28
|
+
'/webrtc/RTCIceConnectionState-candidate-pair.https.html',
|
|
29
|
+
'/webrtc/RTCIceTransport.html',
|
|
30
|
+
'/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html',
|
|
36
31
|
'/webrtc/RTCPeerConnection-addIceCandidate.html',
|
|
37
|
-
|
|
32
|
+
'/webrtc/RTCPeerConnection-addIceCandidate-timing.https.html',
|
|
38
33
|
'/webrtc/RTCPeerConnection-addTcpIceCandidate.html',
|
|
39
34
|
// '/webrtc/RTCPeerConnection-addTrack.https.html',
|
|
40
35
|
// '/webrtc/RTCPeerConnection-add-track-no-deadlock.https.html',
|
|
@@ -134,4 +129,11 @@ export default [
|
|
|
134
129
|
// '/webrtc/simplecall.https.html',
|
|
135
130
|
// '/webrtc/simplecall-no-ssrcs.https.html',
|
|
136
131
|
// '/webrtc/toJSON.html',
|
|
132
|
+
|
|
133
|
+
// Failed or skipped tests
|
|
134
|
+
// '/webrtc/RTCCertificate-postMessage.html', // SKIP, iframe
|
|
135
|
+
// '/webrtc/RTCDataChannel-close.html', // Not ending
|
|
136
|
+
// '/webrtc/RTCDataChannel-GC.html', // Not ending
|
|
137
|
+
// '/webrtc/RTCDataChannel-send-close.html', // libdatachannel not giving OperationError error
|
|
138
|
+
// '/webrtc/RTCDataChannel-send.html', // throws Error
|
|
137
139
|
];
|