mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 10:00:54 +00:00
Bug 283278 - Input should not alter invalid/out-of-range data. r=allan,aaronr
This commit is contained in:
parent
24c4b2f21e
commit
cff692104b
@ -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…
Reference in New Issue
Block a user