diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 16:56:29 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 16:56:29 +0000 |
commit | e5263916f2e000b2b53d8385a452d4fd5a4106b1 (patch) | |
tree | 4c01f662e4753642fa10631729b6a39ec0b7fc36 /webkit/tools | |
parent | f43834da3a02fbf0aadd2371a713cf7c67f3e6b6 (diff) | |
download | chromium_src-e5263916f2e000b2b53d8385a452d4fd5a4106b1.zip chromium_src-e5263916f2e000b2b53d8385a452d4fd5a4106b1.tar.gz chromium_src-e5263916f2e000b2b53d8385a452d4fd5a4106b1.tar.bz2 |
Makes the test_shell output the page title too in didReceiveTitle.
BUG=22014
TEST=LayoutTests/http/tests/loading/redirectwith-no-location-crash.html
Checked in for Kinuko Yasuda
Original review: http://codereview.chromium.org/384082
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31909 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r-- | webkit/tools/layout_tests/test_expectations.txt | 3 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.cc | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/webkit/tools/layout_tests/test_expectations.txt b/webkit/tools/layout_tests/test_expectations.txt index dac8a75..db4c412 100644 --- a/webkit/tools/layout_tests/test_expectations.txt +++ b/webkit/tools/layout_tests/test_expectations.txt @@ -2888,9 +2888,6 @@ BUG21919 WIN RELEASE : LayoutTests/http/tests/security/mixedContent/insecure-css BUG21958 LINUX DEBUG : LayoutTests/svg/hixie/error/012.xml = FAIL PASS BUG21958 MAC : LayoutTests/svg/hixie/error/012.xml = FAIL PASS -// WK roll 48399:48423 (brettw) -BUG22014 : LayoutTests/http/tests/loading/redirect-with-no-location-crash.html = FAIL - // WebKit merge 48500:48585, newly implemented Object.defineProperty. BUG22526 : LayoutTests/fast/js/Object-create.html = FAIL BUG22526 : LayoutTests/fast/js/Object-defineProperties.html = FAIL diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc index f8d8ae6..258351c 100644 --- a/webkit/tools/test_shell/test_webview_delegate.cc +++ b/webkit/tools/test_shell/test_webview_delegate.cc @@ -801,8 +801,8 @@ void TestWebViewDelegate::didReceiveTitle( std::wstring wtitle = UTF16ToWideHack(title); if (shell_->ShouldDumpFrameLoadCallbacks()) { - printf("%S - didReceiveTitle\n", - GetFrameDescription(frame).c_str()); + printf("%S - didReceiveTitle: %S\n", + GetFrameDescription(frame).c_str(), wtitle.c_str()); } if (shell_->ShouldDumpTitleChanges()) { |