mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 321000 - search bar should replace newlines in pasted text with spaces. r=gavin a=mconnor
This commit is contained in:
parent
6fe03ffba7
commit
5f7cf73977
@ -283,7 +283,8 @@
|
||||
<toolbaritem id="search-container" title="&searchItem.title;"
|
||||
align="center" class="chromeclass-toolbar-additional"
|
||||
flex="100" persist="width">
|
||||
<searchbar id="searchbar" flex="1" chromedir="&locale.dir;"/>
|
||||
<searchbar id="searchbar" flex="1" chromedir="&locale.dir;"
|
||||
newlines="replacewithspaces"/>
|
||||
</toolbaritem>
|
||||
|
||||
<toolbarbutton id="print-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
|
||||
|
@ -98,7 +98,7 @@
|
||||
completeselectedindex="true"
|
||||
showcommentcolumn="true"
|
||||
tabscrolling="true"
|
||||
xbl:inherits="disabled,disableautocomplete,searchengine,src">
|
||||
xbl:inherits="disabled,disableautocomplete,searchengine,src,newlines">
|
||||
</xul:textbox>
|
||||
</xul:hbox>
|
||||
|
||||
|
@ -113,16 +113,9 @@
|
||||
</body>
|
||||
</method>
|
||||
|
||||
<constructor><![CDATA[
|
||||
var str = this.boxObject.getProperty("value");
|
||||
if (str) {
|
||||
this.inputField.value = str;
|
||||
this.boxObject.removeProperty("value");
|
||||
}
|
||||
#ifndef MOZILLA_1_8_BRANCH
|
||||
# bug 253481
|
||||
|
||||
str = this.getAttribute("newlines");
|
||||
<method name="_setNewlineHandling">
|
||||
<body><![CDATA[
|
||||
var str = this.getAttribute("newlines");
|
||||
if (str) {
|
||||
const nsIPlaintextEditor = Components.interfaces.nsIPlaintextEditor;
|
||||
for (var x in nsIPlaintextEditor) {
|
||||
@ -135,7 +128,19 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
]]></body>
|
||||
</method>
|
||||
|
||||
<constructor><![CDATA[
|
||||
var str = this.boxObject.getProperty("value");
|
||||
if (str) {
|
||||
this.inputField.value = str;
|
||||
this.boxObject.removeProperty("value");
|
||||
}
|
||||
// this.editor may not be initialized yet in
|
||||
// bindings that inherit from xul:textbox, so
|
||||
// do this after construction
|
||||
setTimeout(function (a) { a._setNewlineHandling(); }, 0, this);
|
||||
]]></constructor>
|
||||
|
||||
<destructor>
|
||||
|
Loading…
Reference in New Issue
Block a user