Index: chrome_frame/test/chrome_frame_unittests.cc |
=================================================================== |
--- chrome_frame/test/chrome_frame_unittests.cc (revision 35707) |
+++ chrome_frame/test/chrome_frame_unittests.cc (working copy) |
@@ -1745,9 +1745,8 @@ |
FullTabModeIE_ChromeFrameXHRAuthHeaderTest) { |
chrome_frame_test::TimedMsgLoop loop; |
- ASSERT_TRUE( |
- LaunchBrowser(IE, |
- kChromeFrameFullTabModeXMLHttpRequestAuthHeaderTestUrl)); |
+ ASSERT_TRUE(LaunchBrowser( |
+ IE, kChromeFrameFullTabModeXMLHttpRequestAuthHeaderTestUrl)); |
loop.RunFor(kChromeFrameLongNavigationTimeoutInSeconds); |
@@ -1755,3 +1754,19 @@ |
ASSERT_TRUE( |
CheckResultFile(L"FullTab_XMLHttpRequestAuthorizationHeaderTest", "OK")); |
} |
+ |
+const wchar_t kChromeFrameFullTabModeDeleteCookieTest[] = |
+ L"files/fulltab_delete_cookie_test.html"; |
+ |
+TEST_F(ChromeFrameTestWithWebServer, |
+ FullTabModeIE_ChromeFrameDeleteCookieTest) { |
+ chrome_frame_test::TimedMsgLoop loop; |
+ |
+ ASSERT_TRUE(LaunchBrowser(IE, kChromeFrameFullTabModeDeleteCookieTest)); |
+ |
+ loop.RunFor(kChromeFrameLongNavigationTimeoutInSeconds); |
+ |
+ chrome_frame_test::CloseAllIEWindows(); |
+ ASSERT_TRUE(CheckResultFile(L"FullTab_DeleteCookieTest", "OK")); |
+} |
+ |