Issue 4509: "Run to line" debugging shortcut is activated neither by Ctrl-click nor by middle-click on line number
Run To This Line via context menu
Steps to reproduce
Open Firebug
Enable the Console and Script and switch to the Script panel
Reload the page ⇒ Script execution should stop at line 10 (debugger;)
Right-click on line 12 (console.log("Run To Line should stop here.");) and choose Run To This Line from the context menu ⇒ The execution indicator should now stand at line 12 (console.log("Run To Line should stop here.");)
Switch to the Console panel ⇒ That's the first log line. should be listed inside the console
Expected result
Run To This Line should execute the script to the clicked line
Run to line via Ctrl/⌘+click on Breakpoint Column
Steps to reproduce
Open Firebug
Enable the Console and Script and switch to the Script panel
Reload the page ⇒ Script execution should stop at line 10 (debugger;)
Hold down Ctrl/⌘ and click on the Breakpoint Column at line 12 (console.log("Run To Line should stop here.");) ⇒ The execution indicator should now stand at line 12 (console.log("Run To Line should stop here.");)
Switch to the Console panel ⇒ That's the first log line. should be listed inside the console
Expected result
Ctrl/⌘+clicking in the Breakpoint Column should execute the script to the clicked line
Run to line via middle-click on Breakpoint Column
Steps to reproduce
Open Firebug
Enable the Console and Script and switch to the Script panel
Reload the page ⇒ Script execution should stop at line 10 (debugger;)
Middle-click on the Breakpoint Column at line 12 (console.log("Run To Line should stop here.");) ⇒ The execution indicator should now stand at line 12 (console.log("Run To Line should stop here.");)
Switch to the Console panel ⇒ That's the first log line. should be listed inside the console
Expected result
Middle-clicking in the Breakpoint Column should execute the script to the clicked line