mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
Bug 611466 - Fennec highlights the whole URL after I've entered a special character ('~'), inviting me to overwrite it (missed some changes) [r=vingtetun]
This commit is contained in:
parent
450582ca09
commit
81fdd0dce7
@ -43,9 +43,6 @@
|
||||
input.blur();
|
||||
input.focus();
|
||||
|
||||
if (val)
|
||||
input.selectionStart = input.selectionEnd = input.textLength;
|
||||
|
||||
return val;
|
||||
]]></setter>
|
||||
</property>
|
||||
@ -113,6 +110,12 @@
|
||||
]]>
|
||||
</handler>
|
||||
|
||||
<handler event="TapDouble" phase="capturing">
|
||||
<![CDATA[
|
||||
this.select();
|
||||
]]>
|
||||
</handler>
|
||||
|
||||
<handler event="TapLong" phase="capturing">
|
||||
<![CDATA[
|
||||
let box = this.inputField.parentNode;
|
||||
|
Loading…
Reference in New Issue
Block a user