Index: third_party/WebKit/Source/core/dom/ScriptLoader.cpp |
diff --git a/third_party/WebKit/Source/core/dom/ScriptLoader.cpp b/third_party/WebKit/Source/core/dom/ScriptLoader.cpp |
index e656de67ada8e2be16cbce860cb73955745b1ffc..7aeec8473c0b10f1d564b7004cd55674c30a3ff6 100644 |
--- a/third_party/WebKit/Source/core/dom/ScriptLoader.cpp |
+++ b/third_party/WebKit/Source/core/dom/ScriptLoader.cpp |
@@ -361,9 +361,9 @@ bool ScriptLoader::executeScript(const ScriptSourceCode& sourceCode, double* com |
const ContentSecurityPolicy* csp = elementDocument->contentSecurityPolicy(); |
bool shouldBypassMainWorldCSP = (frame && frame->script().shouldBypassMainWorldCSP()) |
|| csp->allowScriptWithNonce(m_element->fastGetAttribute(HTMLNames::nonceAttr)) |
- || csp->allowScriptWithHash(sourceCode.source()); |
+ || csp->allowScriptWithHash(sourceCode.source().toString()); |
- if (!m_isExternalScript && (!shouldBypassMainWorldCSP && !csp->allowInlineScript(elementDocument->url(), m_startLineNumber, sourceCode.source()))) { |
+ if (!m_isExternalScript && (!shouldBypassMainWorldCSP && !csp->allowInlineScript(elementDocument->url(), m_startLineNumber, sourceCode.source().toString()))) { |
return false; |
} |