| OLD | NEW |
| 1 | 1 |
| 2 class HTMLVideoElement extends HTMLMediaElement native "HTMLVideoElement" { | 2 class HTMLVideoElement extends HTMLMediaElement native "*HTMLVideoElement" { |
| 3 | 3 |
| 4 int height; | 4 int height; |
| 5 | 5 |
| 6 String poster; | 6 String poster; |
| 7 | 7 |
| 8 int videoHeight; | 8 int videoHeight; |
| 9 | 9 |
| 10 int videoWidth; | 10 int videoWidth; |
| 11 | 11 |
| 12 int webkitDecodedFrameCount; | 12 int webkitDecodedFrameCount; |
| 13 | 13 |
| 14 bool webkitDisplayingFullscreen; | 14 bool webkitDisplayingFullscreen; |
| 15 | 15 |
| 16 int webkitDroppedFrameCount; | 16 int webkitDroppedFrameCount; |
| 17 | 17 |
| 18 bool webkitSupportsFullscreen; | 18 bool webkitSupportsFullscreen; |
| 19 | 19 |
| 20 int width; | 20 int width; |
| 21 | 21 |
| 22 void webkitEnterFullScreen() native; | 22 void webkitEnterFullScreen() native; |
| 23 | 23 |
| 24 void webkitEnterFullscreen() native; | 24 void webkitEnterFullscreen() native; |
| 25 | 25 |
| 26 void webkitExitFullScreen() native; | 26 void webkitExitFullScreen() native; |
| 27 | 27 |
| 28 void webkitExitFullscreen() native; | 28 void webkitExitFullscreen() native; |
| 29 } | 29 } |
| OLD | NEW |