mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
3b2f7dba04
* Stop using setAttribute for ARIA * Remove references to shaka.ui.Constants.ARIA_LABEL
25 lines
432 B
JavaScript
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;
|