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() {
1111 gURLBar . blur ( ) ;
1212
1313 await SpecialPowers . pushPrefEnv ( {
14- set : [ [ 'zen.urlbar.vim-navigation.enabled' , true ] ]
14+ set : [ [ 'zen.urlbar.vim-navigation.enabled' , true ] ] ,
1515 } ) ;
1616
1717 await SimpleTest . promiseFocus ( window ) ;
@@ -29,8 +29,10 @@ add_task(async function test_Vim_Navigation() {
2929 EventUtils . synthesizeKey ( 'j' , { ctrlKey : true } , window ) ;
3030 EventUtils . synthesizeKey ( 'VK_DOWN' , { } , window ) ;
3131
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+ ) ;
3436
3537 // Ctrl+k and up should work to move the selection up
3638 EventUtils . synthesizeKey ( 'k' , { ctrlKey : true } , window ) ;
You can’t perform that action at this time.
0 commit comments