mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
backport Bug 1696685 - r=valentin,nika a=RyanVM
This commit is contained in:
parent
26ae6482f6
commit
f43ff83d54
5 changed files with 58 additions and 40 deletions
|
|
@ -97,7 +97,11 @@ enum EscapeMask {
|
|||
* ascii octets (<= 0x7F) to be skipped when unescaping */
|
||||
esc_AlwaysCopy = 1u << 13, /* copy input to result buf even if escaping is unnecessary */
|
||||
esc_Colon = 1u << 14, /* forces escape of colon */
|
||||
esc_SkipControl = 1u << 15 /* skips C0 and DEL from unescaping */
|
||||
esc_SkipControl = 1u << 15, /* skips C0 and DEL from unescaping */
|
||||
esc_Spaces = 1u << 16, /* forces escape of spaces */
|
||||
esc_ExtHandler = 1u << 17 /* For escaping external protocol handler urls.
|
||||
* Escapes everything except:
|
||||
* a-z, 0-9 and !#$&'()*+,-./:;=?@[]_~ */
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue