mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 694434 - Added decodeURI function call to decode percent encoding on the filename URI to display non-ASCII characters correctly. r=dolske
This commit is contained in:
parent
dedb484195
commit
64b6828c0b
@ -876,7 +876,7 @@
|
||||
let srcIdx = srcParts.length - 1;
|
||||
if (src.lastIndexOf('/') == src.length - 1)
|
||||
srcIdx--;
|
||||
s.filename.textContent = srcParts[srcIdx];
|
||||
s.filename.textContent = decodeURI(srcParts[srcIdx]);
|
||||
|
||||
let size = v.videoWidth + "x" + v.videoHeight;
|
||||
if (this._getComputedPropertyValueAsInt(this.video, "width") != v.videoWidth || this._getComputedPropertyValueAsInt(this.video, "height") != v.videoHeight)
|
||||
|
Loading…
Reference in New Issue
Block a user