Putting back 452979, wasn't the problem.

This commit is contained in:
Vladimir Vukicevic 2008-11-12 15:20:04 -08:00
parent e922182b0e
commit 4bcaf6f2f4

View File

@ -2095,6 +2095,11 @@ function losslessDecodeURI(aURI) {
encodeURIComponent);
} catch (e) {}
// Encode invisible characters (invisible control characters, soft hyphen,
// zero-width space, BOM, line separator, paragraph separator) (bug 452979)
value = value.replace(/[\v\x0c\x1c\x1d\x1e\x1f\u00ad\u200b\ufeff\u2028\u2029]/g,
encodeURIComponent);
// Encode bidirectional formatting characters.
// (RFC 3987 sections 3.2 and 4.1 paragraph 6)
value = value.replace(/[\u200e\u200f\u202a\u202b\u202c\u202d\u202e]/g,