Re: [webrtc-pc] Remove event.receiver.

I think in hindsight I'm withdrawing this PR. More browsers than I realized already support this, i.e. this works in Safari:
```js
pc.ontrack = event => {
  console.log(event.track);
  console.log(event.receiver.track);
  console.log(event.transceiver.receiver.track);
  video.srcObject = event.streams[0];
};
```
The redundancy extends to `track` as well, a can of worms best left unopened, and the value of removing any of these seem marginal, whereas the compat hit substantial. 

-- 
GitHub Notification of comment by jan-ivar
Please view or discuss this issue at https://github.com/w3c/webrtc-pc/pull/1532#issuecomment-329225683 using your GitHub account

Received on Wednesday, 13 September 2017 16:38:30 UTC