Home | History | Annotate | Download | only in WebCoreSupport

Lines Matching refs:ShiftKey

88 static const unsigned ShiftKey = 1 << 1;
104 { VK_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
106 { VK_LEFT, AltKey | ShiftKey, "MoveWordLeftAndModifySelection" },
108 { VK_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
110 { VK_RIGHT, AltKey | ShiftKey, "MoveWordRightAndModifySelection" },
112 { VK_UP, ShiftKey, "MoveUpAndModifySelection" },
114 { VK_DOWN, ShiftKey, "MoveDownAndModifySelection" },
117 { VK_BACK, ShiftKey, "ForwardDelete" },
119 { VK_BACK, AltKey | ShiftKey, "DeleteWordForward" },
123 { VK_TAB, ShiftKey, "InsertBacktab" },
126 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" }
131 { '\t', ShiftKey, "InsertBackTab" },
134 { '\r', AltKey | ShiftKey, "InsertNewline" }
156 if (keyEvent->shiftKey())
157 modifiers |= ShiftKey;