Title: [259740] trunk/Source/WebInspectorUI
Revision
259740
Author
[email protected]
Date
2020-04-08 12:00:02 -0700 (Wed, 08 Apr 2020)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (259739 => 259740)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-04-08 18:57:53 UTC (rev 259739)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-04-08 19:00:02 UTC (rev 259740)
@@ -1,5 +1,16 @@
 2020-04-08  Devin Rousso  <[email protected]>
 
+        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.
+
+2020-04-08  Devin Rousso  <[email protected]>
+
         Web Inspector: Sources: support copying selected call frame(s) in the Call Stack
         https://bugs.webkit.org/show_bug.cgi?id=210172
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css (259739 => 259740)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css	2020-04-08 18:57:53 UTC (rev 259739)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css	2020-04-08 19:00:02 UTC (rev 259740)
@@ -103,7 +103,8 @@
     opacity: 1;
 }
 
-.object-tree.properties-only.json-only .object-tree-property.prototype-property {
+.object-tree.properties-only.json-only .object-tree-property.prototype-property, 
+.object-tree.properties-only.json-only .object-tree-property.prototype-property + .children {
     display: none;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to