- frameborder is obsolete and not valid in htnl5
- webkitAllowFullScreen and mozAllowFullScreen are not valid attributes
```html_example
<div class="flex-video">
- <iframe width="420" height="315" src="https://www.youtube.com/embed/V9gkYw35Vws" frameborder="0" allowfullscreen></iframe>
+ <iframe width="420" height="315" src="https://www.youtube.com/embed/V9gkYw35Vws" allowfullscreen style="border:0"></iframe>
</div>
```
```html_example
<div class="flex-video widescreen">
- <iframe width="420" height="315" src="https://www.youtube.com/embed/aiBt44rrslw" frameborder="0" allowfullscreen></iframe>
+ <iframe width="420" height="315" src="https://www.youtube.com/embed/aiBt44rrslw" allowfullscreen style="border:0"></iframe>
</div>
```
```html_example
<div class="flex-video widescreen vimeo">
- <iframe src="http://player.vimeo.com/video/60122989" width="400" height="225" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
+ <iframe src="http://player.vimeo.com/video/60122989" width="400" height="225" allowfullscreen style="border:0"></iframe>
</div>
```