| Index: Source/core/inspector/InspectorDOMAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorDOMAgent.cpp b/Source/core/inspector/InspectorDOMAgent.cpp
|
| index a16bb309a89066ab8a27e3a215f9b64953b9debe..70309f3c315f08a551cdde66d02ffab4870e04e3 100644
|
| --- a/Source/core/inspector/InspectorDOMAgent.cpp
|
| +++ b/Source/core/inspector/InspectorDOMAgent.cpp
|
| @@ -1241,6 +1241,9 @@ PassOwnPtr<InspectorHighlightConfig> InspectorDOMAgent::highlightConfigFromInspe
|
| bool showExtensionLines = false; // Default: false (do not show extension lines).
|
| highlightInspectorObject->getBoolean("showExtensionLines", &showExtensionLines);
|
| highlightConfig->showExtensionLines = showExtensionLines;
|
| + bool showWYSIWYGEditor = false;
|
| + highlightInspectorObject->getBoolean("showWYSIWYGEditor", &showWYSIWYGEditor);
|
| + highlightConfig->showWYSIWYGEditor = showWYSIWYGEditor;
|
| highlightConfig->content = parseConfigColor("contentColor", highlightInspectorObject);
|
| highlightConfig->contentOutline = parseConfigColor("contentOutlineColor", highlightInspectorObject);
|
| highlightConfig->padding = parseConfigColor("paddingColor", highlightInspectorObject);
|
|
|