Issue #3599

This test-case is intended for Issue #3599 - The value of undefined no longer show in the console.
Jan Odvarko, odvarko@gmail.com

  1. Open Firebug and enable the Console panel.
  2. Copy the code and paste it into the Firebug's command line:
    var a = 10;
  3. The Console panel should display:
    >>> var a = 10;
    undefined;
    
The 'undefined' should be displayed at the end (since no result value).