Index: Source/core/inspector/InspectorDOMAgent.cpp |
diff --git a/Source/core/inspector/InspectorDOMAgent.cpp b/Source/core/inspector/InspectorDOMAgent.cpp |
index fb9146cfdd46f1e1e4d96411f41cf7164b8cb47f..db1458032542aec115ed154f1470f11b04627347 100644 |
--- a/Source/core/inspector/InspectorDOMAgent.cpp |
+++ b/Source/core/inspector/InspectorDOMAgent.cpp |
@@ -1255,6 +1255,9 @@ PassOwnPtr<InspectorHighlightConfig> InspectorDOMAgent::highlightConfigFromInspe |
bool showLayoutEditor = false; |
highlightInspectorObject->getBoolean("showLayoutEditor", &showLayoutEditor); |
highlightConfig->showLayoutEditor = showLayoutEditor; |
+ bool displayAsMaterial = false; |
+ highlightInspectorObject->getBoolean("displayAsMaterial", &displayAsMaterial); |
+ highlightConfig->displayAsMaterial = displayAsMaterial; |
highlightConfig->content = parseConfigColor("contentColor", highlightInspectorObject); |
highlightConfig->contentOutline = parseConfigColor("contentOutlineColor", highlightInspectorObject); |
highlightConfig->padding = parseConfigColor("paddingColor", highlightInspectorObject); |