Bug 746164 - Correction for Failure for the shortcut keys in actions/test_keys.html, r=hub

This commit is contained in:
Marco Zehe 2012-04-26 10:58:35 +02:00
Родитель 7e901ca475
Коммит eb65a406fd
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -26,8 +26,8 @@
function doTest()
{
testKeyboardShortcut("input1", "");
testKeyboardShortcut("input2", MAC ? "⌃%b" : "Alt+Shift+b");
testKeyboardShortcut("link", MAC ? "⌃%l" : "Alt+Shift+l");
testKeyboardShortcut("input2", MAC ? "⌃b" : "Alt+Shift+b");
testKeyboardShortcut("link", MAC ? "⌃l" : "Alt+Shift+l");
SimpleTest.finish();
}