Skip to content

Commit

Permalink
Fix HTMLVideoElement.prototype.{width,height} type.
Browse files Browse the repository at this point in the history
By external contributor @fredj.
Closes PR #1664.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=117466562
  • Loading branch information
dimvar authored and blickly committed Mar 17, 2016
1 parent 01de6d7 commit 9101452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions externs/browser/html5.js
Original file line number Diff line number Diff line change
Expand Up @@ -1697,10 +1697,10 @@ HTMLVideoElement.prototype.webkitExitFullscreen = function() {};
*/
HTMLVideoElement.prototype.webkitExitFullScreen = function() {};

/** @type {string} */
/** @type {number} */
HTMLVideoElement.prototype.width;

/** @type {string} */
/** @type {number} */
HTMLVideoElement.prototype.height;

/** @type {number} */
Expand Down

0 comments on commit 9101452

Please sign in to comment.