[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
bfulgham at webkit.org
bfulgham at webkit.org
Tue Jan 5 23:46:02 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 5af62497a5fc4eb20a99de962eb9a8daf22d0afb
Author: bfulgham at webkit.org <bfulgham at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Dec 9 20:26:27 2009 +0000
Revert incorrect commit-box update r51911.
It mistakenly set the selectAll implementation in the
deslectAll method.
* WebFrame.cpp:
(WebFrame::deselectAll):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51913 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/win/ChangeLog b/WebKit/win/ChangeLog
index 4d0fdf3..cec9cd9 100644
--- a/WebKit/win/ChangeLog
+++ b/WebKit/win/ChangeLog
@@ -1,5 +1,14 @@
2009-12-09 Brent Fulgham <bfulgham at webkit.org>
+ Revert incorrect commit-box update r51911.
+ It mistakenly set the selectAll implementation in the
+ deslectAll method.
+
+ * WebFrame.cpp:
+ (WebFrame::deselectAll):
+
+2009-12-09 Brent Fulgham <bfulgham at webkit.org>
+
Reviewed by Darin Adler.
Provide an implementation for 'selectAll'
diff --git a/WebKit/win/WebFrame.cpp b/WebKit/win/WebFrame.cpp
index 0d16b21..9063fde 100644
--- a/WebKit/win/WebFrame.cpp
+++ b/WebKit/win/WebFrame.cpp
@@ -998,14 +998,7 @@ HRESULT STDMETHODCALLTYPE WebFrame::selectAll()
HRESULT STDMETHODCALLTYPE WebFrame::deselectAll()
{
- Frame* coreFrame = core(this);
- if (!coreFrame)
- return E_FAIL;
-
- if (!coreFrame->editor()->command("SelectAll").execute())
- return E_FAIL;
-
- return S_OK;
+ return E_NOTIMPL;
}
// WebFrame ---------------------------------------------------------------
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list