| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 246b1ca7ec6a3da9e7c4a69fc8a9120ffd481174..3c6bbae31fdc6c5591a690d1823d37a99936fd01 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -4485,7 +4485,7 @@ bool Document::execCommand(const String& commandName, bool, const String& value,
|
| addConsoleMessage(ConsoleMessage::create(JSMessageSource, WarningMessageLevel, message));
|
| return false;
|
| }
|
| - TemporaryChange<bool> executeScope(m_isRunningExecCommand, true);
|
| + TemporaryChange<bool> executeScope(&m_isRunningExecCommand, true);
|
|
|
| // Postpone DOM mutation events, which can execute scripts and change
|
| // DOM tree against implementation assumption.
|
|
|