author | Timothy Guan-tin Chien <timdream@gmail.com> |
Tue, 17 Apr 2018 18:14:47 +0800 | |
changeset 416083 | c576cede0ed12efe1b15d3617e9cd736b79c4111 |
parent 416082 | 8e51a02b3d487304ef1e80dc0f87eb51a140e043 |
child 416084 | 09f7885a83ce43f44209d938e982316067446e5e |
push id | 33916 |
push user | apavel@mozilla.com |
push date | Sat, 28 Apr 2018 17:29:16 +0000 |
treeherder | mozilla-central@807e94988d9a [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | Ehsan |
bugs | 1451576 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/toolkit/content/widgets/videocontrols.xml +++ b/toolkit/content/widgets/videocontrols.xml @@ -1651,16 +1651,17 @@ tt.index = this.textTracksCount++; const label = tt.label || ""; const ttText = document.createTextNode(label); const ttBtn = document.createElement("button"); ttBtn.classList.add("textTrackItem"); ttBtn.setAttribute("index", tt.index); + ttBtn.setAttribute("dir", "auto"); ttBtn.appendChild(ttText); this.textTrackList.appendChild(ttBtn); if (tt.mode === "showing" && tt.index) { this.changeTextTrack(tt.index); } },