Title: [182778] trunk/Source/WebInspectorUI
Revision
182778
Author
[email protected]
Date
2015-04-13 20:02:29 -0700 (Mon, 13 Apr 2015)

Log Message

Web Inspector: Expanding window.navigator.mimeTypes in ObjectTree shows no native properties
https://bugs.webkit.org/show_bug.cgi?id=143690

Patch by Joseph Pecoraro <[email protected]> on 2015-04-13
Reviewed by Timothy Hatcher.

* UserInterface/Views/ObjectTreePropertyTreeElement.js:
(WebInspector.ObjectTreePropertyTreeElement):
Fix a typo that resulted in hiding properties of native objects
in the Properties section of an Object Tree.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (182777 => 182778)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-04-14 03:00:50 UTC (rev 182777)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-04-14 03:02:29 UTC (rev 182778)
@@ -1,5 +1,17 @@
 2015-04-13  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Expanding window.navigator.mimeTypes in ObjectTree shows no native properties
+        https://bugs.webkit.org/show_bug.cgi?id=143690
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/ObjectTreePropertyTreeElement.js:
+        (WebInspector.ObjectTreePropertyTreeElement):
+        Fix a typo that resulted in hiding properties of native objects
+        in the Properties section of an Object Tree.
+
+2015-04-13  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Remove unnecessary 3 second delay when archiving page
         https://bugs.webkit.org/show_bug.cgi?id=143688
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreePropertyTreeElement.js (182777 => 182778)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreePropertyTreeElement.js	2015-04-14 03:00:50 UTC (rev 182777)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreePropertyTreeElement.js	2015-04-14 03:02:29 UTC (rev 182778)
@@ -355,7 +355,7 @@
         var resolvedValue = this.resolvedValue();
         var isArray = resolvedValue.isArray();
         var isPropertyMode = mode === WebInspector.ObjectTreeView.Mode.Properties || this._getterValue;
-        var isAPI = mode !== WebInspector.ObjectTreeView.Mode.Prototype;
+        var isAPI = mode !== WebInspector.ObjectTreeView.Mode.Properties;
 
         var prototypeName;
         if (this.property.name === "__proto__") {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to