File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ add_task(async function test_Vim_Navigation() {
11
11
gURLBar . blur ( ) ;
12
12
13
13
await SpecialPowers . pushPrefEnv ( {
14
- set : [ [ 'zen.urlbar.vim-navigation.enabled' , true ] ]
14
+ set : [ [ 'zen.urlbar.vim-navigation.enabled' , true ] ] ,
15
15
} ) ;
16
16
17
17
await SimpleTest . promiseFocus ( window ) ;
@@ -29,8 +29,10 @@ add_task(async function test_Vim_Navigation() {
29
29
EventUtils . synthesizeKey ( 'j' , { ctrlKey : true } , window ) ;
30
30
EventUtils . synthesizeKey ( 'VK_DOWN' , { } , window ) ;
31
31
32
- ok ( UrlbarTestUtils . getSelectedRowIndex ( window ) == 3 , 'Ctrl+j and down should change the selection' ) ;
33
-
32
+ ok (
33
+ UrlbarTestUtils . getSelectedRowIndex ( window ) == 3 ,
34
+ 'Ctrl+j and down should change the selection'
35
+ ) ;
34
36
35
37
// Ctrl+k and up should work to move the selection up
36
38
EventUtils . synthesizeKey ( 'k' , { ctrlKey : true } , window ) ;
You can’t perform that action at this time.
0 commit comments