Index: Source/devtools/front_end/elements/MetricsSidebarPane.js |
diff --git a/Source/devtools/front_end/elements/MetricsSidebarPane.js b/Source/devtools/front_end/elements/MetricsSidebarPane.js |
index ed575b7298cdcd471c899da4435a59f21569b227..a77e8ae9ada0af6bcb765696a60b9901b9dea107 100644 |
--- a/Source/devtools/front_end/elements/MetricsSidebarPane.js |
+++ b/Source/devtools/front_end/elements/MetricsSidebarPane.js |
@@ -424,7 +424,7 @@ WebInspector.MetricsSidebarPane.prototype = { |
var allProperties = this.inlineStyle.allProperties; |
for (var i = 0; i < allProperties.length; ++i) { |
var property = allProperties[i]; |
- if (property.name !== context.styleProperty || property.inactive) |
+ if (property.name !== context.styleProperty || !property.activeInStyle()) |
continue; |
this.previousPropertyDataCandidate = property; |