[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
beidson at apple.com
beidson at apple.com
Wed Mar 17 18:28:23 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit f7da0f60ca4587ebf176c74138c4bdc1180f64e9
Author: beidson at apple.com <beidson at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Mar 8 20:22:09 2010 +0000
Followup to https://bugs.webkit.org/show_bug.cgi?id=35532
Reviewed by NOBODY (but suggested by Steve Falkenburg and fixing a boneheaded mistake on my part last week)
* DumpRenderTree/win/LayoutTestControllerWin.cpp:
(LayoutTestController::apiTestGoToCurrentBackForwardItem): Can't pass in a null BOOL to WebKit APIs.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55678 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 608bc49..6efbd72 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-08 Brady Eidson <beidson at apple.com>
+
+ Reviewed by NOBODY (but suggested by Steve Falkenburg and fixing a boneheaded mistake on my part last week)
+
+ Followup to https://bugs.webkit.org/show_bug.cgi?id=35532
+
+ * DumpRenderTree/win/LayoutTestControllerWin.cpp:
+ (LayoutTestController::apiTestGoToCurrentBackForwardItem): Can't pass in a null BOOL to WebKit APIs.
+
2010-03-08 Chris Jerdonek <cjerdonek at webkit.org>
Unreviewed.
diff --git a/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp b/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp
index f8449f4..77f7443 100644
--- a/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp
+++ b/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp
@@ -1189,5 +1189,6 @@ void LayoutTestController::apiTestGoToCurrentBackForwardItem()
if (FAILED(backForwardList->currentItem(&item)))
return;
- webView->goToBackForwardItem(item.get(), 0);
+ BOOL success;
+ webView->goToBackForwardItem(item.get(), &success);
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list