summaryrefslogtreecommitdiff
path: root/source/bower_components/modernizr/feature-detects/elem-track.js
blob: 7d8e495bb3aa798a3a54f3efdc2ede537a333e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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'))
});