diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 00:08:28 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 08:06:23 -0400 |
commit | 3b99bf4cc848ee5faf5f3f0d6483f2fa03e5f969 (patch) | |
tree | 3218b307e979c670f5ca9560a158c925a4474bf2 /tests/unit | |
parent | 20fae727d97897ff7c72a04a3cbc762df7cbaacb (diff) | |
download | jquery-ui-3b99bf4cc848ee5faf5f3f0d6483f2fa03e5f969.tar.gz jquery-ui-3b99bf4cc848ee5faf5f3f0d6483f2fa03e5f969.zip |
Menu: Style updates
Ref #14246
Ref gh-1588
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/menu/common.js | 2 | ||||
-rw-r--r-- | tests/unit/menu/events.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/menu/common.js b/tests/unit/menu/common.js index 81674be35..adb74cf0a 100644 --- a/tests/unit/menu/common.js +++ b/tests/unit/menu/common.js @@ -18,7 +18,7 @@ common.testWidget( "menu", { }, role: "menu", - // callbacks + // Callbacks blur: null, create: null, focus: null, diff --git a/tests/unit/menu/events.js b/tests/unit/menu/events.js index 8a4b92fff..790e5912c 100644 --- a/tests/unit/menu/events.js +++ b/tests/unit/menu/events.js @@ -333,7 +333,7 @@ asyncTest( "handle keyboard navigation on menu without scroll and with submenus" element.simulate( "keydown", { keyCode: $.ui.keyCode.LEFT } ); equal( logOutput(), "keydown,4", "Keydown LEFT (close submenu)" ); - // re-open submenu + // Re-open submenu element.simulate( "keydown", { keyCode: $.ui.keyCode.RIGHT } ); setTimeout( menukeyboard3 ); } @@ -525,7 +525,7 @@ asyncTest( "handle keyboard navigation on menu with scroll and with submenus", f element.simulate( "keydown", { keyCode: $.ui.keyCode.LEFT } ); equal( logOutput(), "keydown,1", "Keydown LEFT (close submenu)" ); - // re-open submenu + // Re-open submenu element.simulate( "keydown", { keyCode: $.ui.keyCode.RIGHT } ); setTimeout( menukeyboard3, 50 ); } |