Files
shaka-player/externs/aria.js
T
Álvaro Velad Galván 3b2f7dba04 Fix(UI): Stop using setAttribute for ARIA (#3489)
* Stop using setAttribute for ARIA
* Remove references to shaka.ui.Constants.ARIA_LABEL
2021-07-07 12:30:32 -07:00

25 lines
432 B
JavaScript

/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Externs for ARIA properties which are missing from the Closure
* compiler.
*
* @externs
*/
/** @type {string} */
Element.prototype.ariaLabel;
/** @type {string} */
Element.prototype.ariaPressed;
/** @type {string} */
Element.prototype.ariaSelected;
/** @type {string} */
Element.prototype.ariaHidden;