Skip to content

Instantly share code, notes, and snippets.

@callumlocke
Last active December 30, 2015 03:19
Show Gist options
  • Save callumlocke/7768330 to your computer and use it in GitHub Desktop.
Save callumlocke/7768330 to your computer and use it in GitHub Desktop.
Modernizr test for "track" element (part of HTML5 video element, for captions/subtitles etc)
Modernizr.addTest('track', function () {
var t = document.createElement('track');
return t.track && t.track.kind;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment