mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
22 lines
321 B
HTML
22 lines
321 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var video = document.createElement('video');
|
|
var track = video.addTextTrack('chapters');
|
|
window.meep = new TrackEvent("t", { "track": track });
|
|
document.documentElement.style.expando = null;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
</body>
|
|
|
|
</html>
|