On a normal webpage <input type='text'/>
, in Firefox, you can click anywhere on the element and the browser will "focus" on that element. On a XUL (Firefox extension) <textbox>
element however, only clicking on the leftmost part edges of the textbox will focus it; clicking anywhere else on it does nothing.
I find this really annoying, especially given how input elements in Firefox work normally; I'd have better UI with a web page than with a browser extension! Does anyone know of a way to fix this behavior (I was thinking maybe I could do an onClick="function(){this.focus()}" kinad thing, but that seems so hacky so I was really hoping there was a better way ...)