| Index: third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| index 61b06a393572f1e03d12b0c31684176cb9adc66a..7c09cdbec7831412c862c56178ebe1411999237f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| @@ -24,6 +24,7 @@
|
|
|
| #include "core/html/HTMLIFrameElement.h"
|
|
|
| +#include "bindings/core/v8/SourceLocation.h"
|
| #include "core/CSSPropertyNames.h"
|
| #include "core/HTMLNames.h"
|
| #include "core/frame/UseCounter.h"
|
| @@ -152,7 +153,7 @@ void HTMLIFrameElement::valueWasSet()
|
| String invalidTokens;
|
| setSandboxFlags(m_sandbox->value().isNull() ? SandboxNone : parseSandboxPolicy(m_sandbox->tokens(), invalidTokens));
|
| if (!invalidTokens.isNull())
|
| - document().addConsoleMessage(ConsoleMessage::create(OtherMessageSource, ErrorMessageLevel, "Error while parsing the 'sandbox' attribute: " + invalidTokens));
|
| + document().addConsoleMessage(ConsoleMessage::create(OtherMessageSource, ErrorMessageLevel, "Error while parsing the 'sandbox' attribute: " + invalidTokens, SourceLocation::capture(&document())));
|
| setSynchronizedLazyAttribute(sandboxAttr, m_sandbox->value());
|
| }
|
|
|
|
|