Bug 283278 - Input should not alter invalid/out-of-range data. r=allan,aaronr
git-svn-id: svn://10.0.0.236/trunk@183206 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
64337bcaa9
commit
912159722a
@ -181,7 +181,7 @@
|
||||
onblur="this.parentNode.delegate.value = this.value; this.parentNode.dispatchDOMUIEvent('DOMFocusOut')"
|
||||
onfocus="this.parentNode.dispatchDOMUIEvent('DOMFocusIn')"
|
||||
onclick="this.parentNode._change();"
|
||||
onkeyup="this.parentNode._change();"
|
||||
onkeyup="if (event.keyCode != event.DOM_VK_TAB) this.parentNode._change();"
|
||||
onkeypress="if (event.keyCode == event.DOM_VK_RETURN) this.parentNode.dispatchDOMUIEvent('DOMActivate');"
|
||||
xbl:inherits="accesskey"/>
|
||||
<children/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user