mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 17:05:38 +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>
|