Changeset 172162 in webkit


Ignore:
Timestamp:
Aug 6, 2014 11:32:38 AM (10 years ago)
Author:
Brian Burg
Message:

REGRESSION(r172094): tests fail because Inspector test harness does not include UIString
https://bugs.webkit.org/show_bug.cgi?id=135658

Reviewed by Joseph Pecoraro.

  • UserInterface/Base/Test.js:

(WebInspector.contentLoaded): Fix brace placement.
(WebInspector.UIString): Added. This is the identity function during testing.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r172161 r172162  
     12014-08-06  Brian J. Burg  <burg@cs.washington.edu>
     2
     3        REGRESSION(r172094): tests fail because Inspector test harness does not include UIString
     4        https://bugs.webkit.org/show_bug.cgi?id=135658
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * UserInterface/Base/Test.js:
     9        (WebInspector.contentLoaded): Fix brace placement.
     10        (WebInspector.UIString): Added. This is the identity function during testing.
     11
    1122014-08-06  Brian J. Burg  <burg@cs.washington.edu>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Base/Test.js

    r166040 r172162  
    5858}
    5959
    60 WebInspector.contentLoaded = function() {
     60WebInspector.contentLoaded = function()
     61{
    6162    // Signal that the frontend is now ready to receive messages.
    6263    InspectorFrontendAPI.loadCompleted();
     64}
     65
     66WebInspector.UIString = function(string)
     67{
     68    return string;
    6369}
    6470
Note: See TracChangeset for help on using the changeset viewer.