| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <set> | 5 #include <set> |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 } | 356 } |
| 357 | 357 |
| 358 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeading) { | 358 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeading) { |
| 359 RunTest(FILE_PATH_LITERAL("heading.html")); | 359 RunTest(FILE_PATH_LITERAL("heading.html")); |
| 360 } | 360 } |
| 361 | 361 |
| 362 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHR) { | 362 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHR) { |
| 363 RunTest(FILE_PATH_LITERAL("hr.html")); | 363 RunTest(FILE_PATH_LITERAL("hr.html")); |
| 364 } | 364 } |
| 365 | 365 |
| 366 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 367 AccessibilityIframeCoordinates) { |
| 368 RunTest(FILE_PATH_LITERAL("iframe-coordinates.html")); |
| 369 } |
| 370 |
| 366 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { | 371 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { |
| 367 RunTest(FILE_PATH_LITERAL("input-button.html")); | 372 RunTest(FILE_PATH_LITERAL("input-button.html")); |
| 368 } | 373 } |
| 369 | 374 |
| 370 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 375 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 371 AccessibilityInputButtonInMenu) { | 376 AccessibilityInputButtonInMenu) { |
| 372 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); | 377 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); |
| 373 } | 378 } |
| 374 | 379 |
| 375 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { | 380 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 | 434 |
| 430 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 435 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 431 RunTest(FILE_PATH_LITERAL("ul.html")); | 436 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 432 } | 437 } |
| 433 | 438 |
| 434 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 439 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 435 RunTest(FILE_PATH_LITERAL("wbr.html")); | 440 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 436 } | 441 } |
| 437 | 442 |
| 438 } // namespace content | 443 } // namespace content |
| OLD | NEW |