Re: [webrtc-pc] On track removal: Should you mute an already muted track? (#2506)

Note, the proposed workaround 

```
const video = document.createElement("video");
video.srcObject = new MediaStream([track]);
video.onloadedmetadata = () => log("unmuted workaround!");
```

does not work for this case https://github.com/web-platform-tests/wpt/pull/22779#discussion_r407840712, where `loadedmetadata` will never fire - at Chrome or Firefox.

-- 
GitHub Notification of comment by guest271314
Please view or discuss this issue at https://github.com/w3c/webrtc-pc/issues/2506#issuecomment-616572027 using your GitHub account

Received on Monday, 20 April 2020 13:58:34 UTC