| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include <vector> | 6 #include <vector> |
| 7 | 7 |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
| 10 #include "chrome/browser/ui/browser_window.h" | |
| 11 #include "chrome/common/render_messages.h" | |
| 12 #include "chrome/test/base/in_process_browser_test.h" | 10 #include "chrome/test/base/in_process_browser_test.h" |
| 13 #include "chrome/test/base/ui_test_utils.h" | 11 #include "chrome/test/base/ui_test_utils.h" |
| 14 #include "content/browser/renderer_host/render_view_host.h" | 12 #include "content/browser/renderer_host/render_view_host.h" |
| 15 #include "content/browser/renderer_host/render_widget_host.h" | 13 #include "content/browser/renderer_host/render_widget_host.h" |
| 16 #include "content/browser/renderer_host/render_widget_host_view.h" | 14 #include "content/browser/renderer_host/render_widget_host_view.h" |
| 17 #include "content/browser/tab_contents/tab_contents.h" | 15 #include "content/browser/tab_contents/tab_contents.h" |
| 18 #include "content/public/browser/notification_service.h" | 16 #include "content/public/browser/notification_service.h" |
| 19 #include "content/public/browser/notification_types.h" | 17 #include "content/public/browser/notification_types.h" |
| 20 | 18 |
| 21 #if defined(OS_WIN) | 19 #if defined(OS_WIN) |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 const WebAccessibility& tree = GetWebAccessibilityTree(); | 443 const WebAccessibility& tree = GetWebAccessibilityTree(); |
| 446 | 444 |
| 447 ASSERT_EQ(1U, tree.children.size()); | 445 ASSERT_EQ(1U, tree.children.size()); |
| 448 const WebAccessibility& textbox = tree.children[0]; | 446 const WebAccessibility& textbox = tree.children[0]; |
| 449 | 447 |
| 450 EXPECT_EQ( | 448 EXPECT_EQ( |
| 451 true, GetBoolAttr(textbox, WebAccessibility::ATTR_CAN_SET_VALUE)); | 449 true, GetBoolAttr(textbox, WebAccessibility::ATTR_CAN_SET_VALUE)); |
| 452 } | 450 } |
| 453 | 451 |
| 454 } // namespace | 452 } // namespace |
| OLD | NEW |