Changeset 64978 in webkit


Ignore:
Timestamp:
Aug 9, 2010 6:00:22 AM (14 years ago)
Author:
pfeldman@chromium.org
Message:

2010-08-09 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: restore original last panel restore logic.

https://bugs.webkit.org/show_bug.cgi?id=43719

  • inspector/front-end/inspector.js: (WebInspector.showPanel):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r64977 r64978  
     12010-08-09  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Yury Semikhatsky.
     4
     5        Web Inspector: restore original last panel restore logic.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=43719
     8
     9        * platform/chromium/test_expectations.txt:
     10
    1112010-08-09  Pavel Feldman  <pfeldman@chromium.org>
    212
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r64970 r64978  
    31763176BUGWK43543 : http/tests/misc/isindex-with-no-form-base-href.html = TEXT TIMEOUT
    31773177
    3178 BUGPFELDMAN WIN : http/tests/inspector-enabled/console-log-before-frame-navigation.html = TEXT
    3179 
    31803178// Failure caused by r64749
    31813179BUGSATISH: fast/speech/input-text-speechbutton.html = TIMEOUT
  • trunk/WebCore/ChangeLog

    r64976 r64978  
     12010-08-09  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Yury Semikhatsky.
     4
     5        Web Inspector: restore original last panel restore logic.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=43719
     8
     9        * inspector/front-end/inspector.js:
     10        (WebInspector.showPanel):
     11
    1122010-08-09  Dumitru Daniliuc  <dumi@chromium.org>
    213
  • trunk/WebCore/inspector/front-end/inspector.js

    r64973 r64978  
    10991099WebInspector.showPanel = function(panel)
    11001100{
    1101     if (!(panel in this.panels)) {
    1102         console.error("Unable to show %s panel.", panel);
     1101    if (!(panel in this.panels))
    11031102        panel = "elements";
    1104     }
    11051103    this.currentPanel = this.panels[panel];
    11061104}
Note: See TracChangeset for help on using the changeset viewer.