Re: [mediacapture-main] Clarification needed on HTMLMediaElement attributes that carry over (#599)

> video.defaultPlaybackRate = 0.5;
>     video.playbackRate = 0.5;

We should change the example to:
```
video.defaultPlaybackRate = 0.5;
video.playbackRate = 0.6;
```

In that case, I would expect the results to be:
```
0.5
1
1
0.6
```
Do we agree on this?


-- 
GitHub Notification of comment by youennf
Please view or discuss this issue at https://github.com/w3c/mediacapture-main/issues/599#issuecomment-497875933 using your GitHub account

Received on Friday, 31 May 2019 22:11:51 UTC