Sha256: 465a8d18496f6847ae0064d6c62bfc8b975ca5c5b1836464bb851166835e496e
Contents?: true
Size: 593 Bytes
Versions: 144
Compression:
Stored size: 593 Bytes
Contents
// 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')) });
Version data entries
144 entries across 144 versions & 7 rubygems