+2007-06-18 Dave Hyatt <hyatt@apple.com>
+
+ Let through more newline+modifier key combos in order to support Alt+Enter and Ctrl+Enter in the
+ SafariWin URL bar.
+
+ Reviewed by mccullough
+
+ * WebView.cpp:
+
2007-06-18 Dave Hyatt <hyatt@apple.com>
Add support for horizontal mouse wheeling to Windows. Shift+wheel is supported for horizontal
{ VK_TAB, 0, "InsertTab" },
{ VK_TAB, ShiftKey, "InsertBacktab" },
{ VK_RETURN, 0, "InsertNewline" },
+ { VK_RETURN, CtrlKey, "InsertNewline" },
+ { VK_RETURN, AltKey, "InsertNewline" },
+ { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
{ 'C', CtrlKey, "Copy" },
{ 'V', CtrlKey, "Paste" },