small but pervasive change to make nsIDOMSelection an xpidl interface. also broke it into 2 interfaces, nsISelection and nsISelectionPrivate. moved nsIDOMSelectionListener also to xpidl. these new idl files live in layout/base/public. r=sfraser, r=anthonyd bug 48575

This commit is contained in:
mjudge%netscape.com 2006-07-29 05:35:26 +00:00
Родитель cde3e6c7cb
Коммит bd2b9979be
1 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -8,7 +8,7 @@
<!-- xul key for Windows -->
<keyset id="editorKeySet" xulkey="ctrl">
<!-- alternate cut/copy/paste keys for Windows -->
<key id="winAlternateCutKey" keycode="VK_DELETE" shift="true" control="false" alt="false"
onkeypress="
@ -54,6 +54,16 @@
var controller =
document.commandDispatcher.getControllerForCommand('cmd_selectBottom');
controller.doCommand('cmd_selectBottom');"/>
<key id="key_homectrl" keycode="VK_HOME" shift="false" control="true" alt="false"
onkeypress="
var controller =
document.commandDispatcher.getControllerForCommand('cmd_moveTop');
controller.doCommand('cmd_moveTop');"/>
<key id="key_endctrl" keycode="VK_END" shift="false" control="true" alt="false"
onkeypress="
var controller =
document.commandDispatcher.getControllerForCommand('cmd_moveBottom');
controller.doCommand('cmd_moveBottom');"/>
</keyset>
<!-- End Windows-specific keybindings -->