Index: Source/devtools/front_end/components/ObjectPropertiesSection.js |
diff --git a/Source/devtools/front_end/components/ObjectPropertiesSection.js b/Source/devtools/front_end/components/ObjectPropertiesSection.js |
index 442623fea6c9ecb644a0e463c8d4c09642ae1dfc..444f20361c223334de5cce988cd31602f923e93f 100644 |
--- a/Source/devtools/front_end/components/ObjectPropertiesSection.js |
+++ b/Source/devtools/front_end/components/ObjectPropertiesSection.js |
@@ -138,6 +138,10 @@ WebInspector.ObjectPropertiesSection.CompareProperties = function(propertyA, pro |
return 1; |
if (b === "__proto__") |
return -1; |
+ if (propertyA.symbol && !propertyB.symbol) |
+ return 1; |
+ if (propertyB.symbol && !propertyA.symbol) |
+ return -1; |
return String.naturalOrderComparator(a, b); |
} |