OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <string> | 5 #include <string> |
6 | 6 |
7 #include "app/app_switches.h" | 7 #include "app/app_switches.h" |
8 #include "app/message_box_flags.h" | 8 #include "app/message_box_flags.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/i18n/rtl.h" | 12 #include "base/i18n/rtl.h" |
13 #include "base/keyboard_codes.h" | |
14 #include "base/string_util.h" | 13 #include "base/string_util.h" |
15 #include "base/sys_info.h" | 14 #include "base/sys_info.h" |
16 #include "build/build_config.h" | 15 #include "build/build_config.h" |
17 #include "chrome/app/chrome_dll_resource.h" | 16 #include "chrome/app/chrome_dll_resource.h" |
18 #include "chrome/browser/net/url_request_slow_http_job.h" | 17 #include "chrome/browser/net/url_request_slow_http_job.h" |
19 #include "chrome/browser/view_ids.h" | 18 #include "chrome/browser/view_ids.h" |
20 #include "chrome/common/chrome_constants.h" | 19 #include "chrome/common/chrome_constants.h" |
21 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
22 #include "chrome/common/json_value_serializer.h" | 21 #include "chrome/common/json_value_serializer.h" |
23 #include "chrome/test/automation/autocomplete_edit_proxy.h" | 22 #include "chrome/test/automation/autocomplete_edit_proxy.h" |
(...skipping 1464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1488 | 1487 |
1489 // Allow some time for the popup to show up and close. | 1488 // Allow some time for the popup to show up and close. |
1490 PlatformThread::Sleep(sleep_timeout_ms()); | 1489 PlatformThread::Sleep(sleep_timeout_ms()); |
1491 | 1490 |
1492 std::wstring expected(L"string"); | 1491 std::wstring expected(L"string"); |
1493 std::wstring jscript = CreateJSString(L"\"" + expected + L"\""); | 1492 std::wstring jscript = CreateJSString(L"\"" + expected + L"\""); |
1494 std::wstring actual; | 1493 std::wstring actual; |
1495 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual)); | 1494 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual)); |
1496 ASSERT_EQ(expected, actual); | 1495 ASSERT_EQ(expected, actual); |
1497 } | 1496 } |
OLD | NEW |