frontend/.pnpm-store/v3/files/64/f0a73d18975c4b32d824a005ecc8df013a982d6b54d773fc5a4830d35b41a0c8bb2649f56500ba9f9ab9a62196e9f328671f5f665129f898bd3ea1b099da44

12 lines
593 B
Plaintext

// Track element + Timed Text Track API
// http://www.w3.org/TR/html5/video.html#the-track-element
// http://www.w3.org/TR/html5/media-elements.html#text-track-api
//
// While IE10 has implemented the track element, IE10 does not expose the underlying APIs to create timed text tracks by JS (really sad)
// By Addy Osmani
Modernizr.addTest({
texttrackapi: (typeof (document.createElement('video').addTextTrack) === 'function'),
// a more strict test for track including UI support: document.createElement('track').kind === 'subtitles'
track: ('kind' in document.createElement('track'))
});