Bug 283278 - Input should not alter invalid/out-of-range data. r=allan,aaronr

This commit is contained in:
tor%cs.brown.edu 2005-10-28 18:54:34 +00:00
parent 24c4b2f21e
commit cff692104b

View File

@ -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/>