Changeset 135127 in webkit


Ignore:
Timestamp:
Nov 19, 2012 1:38:58 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Timeline: DomContentLoaded event labeled incorrectly
https://bugs.webkit.org/show_bug.cgi?id=102383

Patch by Eugene Klyuchnikov <eustas.bug@gmail.com> on 2012-11-19
Reviewed by Yury Semikhatsky.

Fixed string presentation of event.

  • inspector/front-end/TimelinePresentationModel.js: Fixed string.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r135123 r135127  
     12012-11-19  Eugene Klyuchnikov  <eustas.bug@gmail.com>
     2
     3        Web Inspector: Timeline: DomContentLoaded event labeled incorrectly
     4        https://bugs.webkit.org/show_bug.cgi?id=102383
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        Fixed string presentation of event.
     9
     10        * inspector/front-end/TimelinePresentationModel.js: Fixed string.
     11
    1122012-11-19  Kentaro Hara  <haraken@chromium.org>
    213
  • trunk/Source/WebCore/inspector/front-end/TimelinePresentationModel.js

    r134023 r135127  
    9595    recordStyles[recordTypes.ResourceReceivedData] = { title: WebInspector.UIString("Receive Data"), category: categories["loading"] };
    9696    recordStyles[recordTypes.GCEvent] = { title: WebInspector.UIString("GC Event"), category: categories["scripting"] };
    97     recordStyles[recordTypes.MarkDOMContent] = { title: WebInspector.UIString("DOMContent event"), category: categories["scripting"] };
     97    recordStyles[recordTypes.MarkDOMContent] = { title: WebInspector.UIString("DOMContentLoaded event"), category: categories["scripting"] };
    9898    recordStyles[recordTypes.MarkLoad] = { title: WebInspector.UIString("Load event"), category: categories["scripting"] };
    9999    recordStyles[recordTypes.TimeStamp] = { title: WebInspector.UIString("Stamp"), category: categories["scripting"] };
Note: See TracChangeset for help on using the changeset viewer.