dom/xbl/builtin/input-fields-base.inc

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1     <handler event="keypress" keycode="VK_LEFT" command="cmd_charPrevious"/>
     2     <handler event="keypress" keycode="VK_RIGHT" command="cmd_charNext"/>
     3     <handler event="keypress" keycode="VK_LEFT" modifiers="shift"
     4         command="cmd_selectCharPrevious"/>
     5     <handler event="keypress" keycode="VK_RIGHT" modifiers="shift"
     6         command="cmd_selectCharNext"/>
     8     <!-- Cut/copy/paste/undo -->
     9     <handler event="keypress" key="c" modifiers="accel" command="cmd_copy"/>
    10     <handler event="keypress" key="x" modifiers="accel" command="cmd_cut"/>
    11     <handler event="keypress" key="v" modifiers="accel" command="cmd_paste"/>
    12     <handler event="keypress" key="z" command="cmd_redo" modifiers="accel,shift" />
    13     <handler event="keypress" key="z" modifiers="accel" command="cmd_undo"/>

mercurial