Changeset 238822 in webkit


Ignore:
Timestamp:
Dec 3, 2018 2:28:35 PM (5 years ago)
Author:
Devin Rousso
Message:

Web Inspector: Audit: test tree elements should start out collapsed
https://bugs.webkit.org/show_bug.cgi?id=192107

Reviewed by Matt Baker.

  • UserInterface/Views/AuditTreeElement.js:

(WI.AuditTreeElement.prototype.onattach):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r238813 r238822  
     12018-12-03  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: Audit: test tree elements should start out collapsed
     4        https://bugs.webkit.org/show_bug.cgi?id=192107
     5
     6        Reviewed by Matt Baker.
     7
     8        * UserInterface/Views/AuditTreeElement.js:
     9        (WI.AuditTreeElement.prototype.onattach):
     10
    1112018-12-03  Nikita Vasilyev  <nvasilyev@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Views/AuditTreeElement.js

    r237665 r238822  
    6363            if (this.representedObject instanceof WI.AuditTestCase)
    6464                this.representedObject.addEventListener(WI.AuditTestBase.Event.Scheduled, this._handleTestCaseScheduled, this);
    65             else if (this.representedObject instanceof WI.AuditTestGroup) {
     65            else if (this.representedObject instanceof WI.AuditTestGroup)
    6666                this.representedObject.addEventListener(WI.AuditTestBase.Event.Scheduled, this._handleTestGroupScheduled, this);
    67                 this.expand();
    68             }
    6967        }
    7068
Note: See TracChangeset for help on using the changeset viewer.