Changeset 181119 in webkit


Ignore:
Timestamp:
Mar 5, 2015 4:49:53 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Follow-up fixes to ObjectTreeBaseTreeElement
https://bugs.webkit.org/show_bug.cgi?id=142367

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-03-05
Reviewed by Timothy Hatcher.

  • UserInterface/Views/ObjectTreeMapEntryTreeElement.js:

(WebInspector.ObjectTreeMapEntryTreeElement.prototype.propertyPathType):

  • UserInterface/Views/ObjectTreeSetIndexTreeElement.js:

(WebInspector.ObjectTreeSetIndexTreeElement.prototype.resolvedValuePropertyPath):
(WebInspector.ObjectTreeSetIndexTreeElement.prototype._titleFragment):

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r181117 r181119  
     12015-03-05  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Follow-up fixes to ObjectTreeBaseTreeElement
     4        https://bugs.webkit.org/show_bug.cgi?id=142367
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/ObjectTreeMapEntryTreeElement.js:
     9        (WebInspector.ObjectTreeMapEntryTreeElement.prototype.propertyPathType):
     10        * UserInterface/Views/ObjectTreeSetIndexTreeElement.js:
     11        (WebInspector.ObjectTreeSetIndexTreeElement.prototype.resolvedValuePropertyPath):
     12        (WebInspector.ObjectTreeSetIndexTreeElement.prototype._titleFragment):
     13
    1142015-03-05  Tobias Reiss  <tobi+webkit@basecode.de>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeMapEntryTreeElement.js

    r181089 r181119  
    5454    {
    5555        return this._object;
     56    },
     57
     58    propertyPathType: function()
     59    {
     60        return WebInspector.PropertyPath.Type.Value;
    5661    },
    5762
  • trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeSetIndexTreeElement.js

    r181089 r181119  
    5555    },
    5656
     57    resolvedValuePropertyPath: function()
     58    {
     59        return this.propertyPath.appendSetIndex(this._object);
     60    },
     61
    5762    // Private
    5863
     
    6166        var container = document.createDocumentFragment();
    6267
    63         var propertyPath = this.propertyPath.appendSetIndex(this._object);
     68        var propertyPath = this.resolvedValuePropertyPath();
    6469
    6570        // Set bullet.
Note: See TracChangeset for help on using the changeset viewer.