⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 259740 in webkit


Ignore:
Timestamp:
Apr 8, 2020, 12:00:02 PM (6 years ago)
Author:
Devin Rousso
Message:

Web Inspector: don't reveal the prototype methods when using the "Expand All" context menu item for property-only object trees
https://bugs.webkit.org/show_bug.cgi?id=210123

Reviewed by Timothy Hatcher.

  • UserInterface/Views/ObjectTreeView.css:

(.object-tree.properties-only.json-only .object-tree-property.prototype-property, .object-tree.properties-only.json-only .object-tree-property.prototype-property + .children): Added.
(.object-tree.properties-only.json-only .object-tree-property.prototype-property): Deleted.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r259738 r259740  
     12020-04-08  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: don't reveal the prototype methods when using the "Expand All" context menu item for property-only object trees
     4        https://bugs.webkit.org/show_bug.cgi?id=210123
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/ObjectTreeView.css:
     9        (.object-tree.properties-only.json-only .object-tree-property.prototype-property, .object-tree.properties-only.json-only .object-tree-property.prototype-property + .children): Added.
     10        (.object-tree.properties-only.json-only .object-tree-property.prototype-property): Deleted.
     11
    1122020-04-08  Devin Rousso  <drousso@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css

    r250087 r259740  
    104104}
    105105
    106 .object-tree.properties-only.json-only .object-tree-property.prototype-property {
     106.object-tree.properties-only.json-only .object-tree-property.prototype-property,
     107.object-tree.properties-only.json-only .object-tree-property.prototype-property + .children {
    107108    display: none;
    108109}
Note: See TracChangeset for help on using the changeset viewer.