| Index: Source/web/WebFrameImpl.cpp
|
| diff --git a/Source/web/WebFrameImpl.cpp b/Source/web/WebFrameImpl.cpp
|
| index 5a53a30f4d295dcf33e9b43264495b136ca34d42..ae65d6c2cdcfdf50815476b33e72837fbb7bcaa9 100644
|
| --- a/Source/web/WebFrameImpl.cpp
|
| +++ b/Source/web/WebFrameImpl.cpp
|
| @@ -1193,6 +1193,11 @@ bool WebFrameImpl::executeCommand(const WebString& name, const WebString& value,
|
| if (!frame()->editor().canEdit() && webName == "moveToEndOfDocument")
|
| return viewImpl()->propagateScroll(ScrollDown, ScrollByDocument);
|
|
|
| + if (webName == "showGuessPanel") {
|
| + frame()->editor().showSpellingGuessPanel();
|
| + return true;
|
| + }
|
| +
|
| return frame()->editor().command(webName).execute(value);
|
| }
|
|
|
|
|