summaryrefslogtreecommitdiff
path: root/Source/WebCore/inspector/InjectedScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/inspector/InjectedScript.cpp')
-rw-r--r--Source/WebCore/inspector/InjectedScript.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/WebCore/inspector/InjectedScript.cpp b/Source/WebCore/inspector/InjectedScript.cpp
index ca6751e6e..6d09b2917 100644
--- a/Source/WebCore/inspector/InjectedScript.cpp
+++ b/Source/WebCore/inspector/InjectedScript.cpp
@@ -208,7 +208,21 @@ void InjectedScript::makeCall(ScriptFunctionCall& function, RefPtr<InspectorValu
DOMWindow* domWindow = domWindowFromScriptState(m_injectedScriptObject.scriptState());
InspectorInstrumentationCookie cookie = domWindow && domWindow->frame() ? InspectorInstrumentation::willCallFunction(domWindow->frame()->page(), "InjectedScript", 1) : InspectorInstrumentationCookie();
bool hadException = false;
+
+ ScriptState* scriptState = m_injectedScriptObject.scriptState();
+ bool evalIsDisabled = false;
+ if (scriptState) {
+ evalIsDisabled = !evalEnabled(scriptState);
+ // Temporarily enable allow evals for inspector.
+ if (evalIsDisabled)
+ setEvalEnabled(scriptState, true);
+ }
+
ScriptValue resultValue = function.call(hadException);
+
+ if (evalIsDisabled)
+ setEvalEnabled(scriptState, false);
+
InspectorInstrumentation::didCallFunction(cookie);
ASSERT(!hadException);