Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
Add Web Animation API (WAAPI) animation playback event names to the E…
Browse files Browse the repository at this point in the history
…ventType Object.

RELNOTES: Web Animation API (WAAPI) animation playback event names added to the EventType Object.

PiperOrigin-RevId: 455235619
Change-Id: Ief10539714435affbb47b577a7d5de62a4bc76ef
  • Loading branch information
Closure Team authored and copybara-github committed Jun 15, 2022
1 parent 545c56b commit 164ee95
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion closure/goog/events/eventtype.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,5 +265,11 @@ goog.events.EventType = {

// Web app manifest events.
BEFOREINSTALLPROMPT: 'beforeinstallprompt',
APPINSTALLED: 'appinstalled'
APPINSTALLED: 'appinstalled',

// Web Animation API (WAAPI) playback events
// https://www.w3.org/TR/web-animations-1/#animation-playback-event-types
CANCEL: 'cancel',
FINISH: 'finish',
REMOVE: 'remove'
};

0 comments on commit 164ee95

Please # to comment.