| 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/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 | 404 |
| 405 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { | 405 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { |
| 406 RunTest(FILE_PATH_LITERAL("input-range.html")); | 406 RunTest(FILE_PATH_LITERAL("input-range.html")); |
| 407 } | 407 } |
| 408 | 408 |
| 409 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 409 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 410 AccessibilityInputTextNameCalc) { | 410 AccessibilityInputTextNameCalc) { |
| 411 RunTest(FILE_PATH_LITERAL("input-text-name-calc.html")); | 411 RunTest(FILE_PATH_LITERAL("input-text-name-calc.html")); |
| 412 } | 412 } |
| 413 | 413 |
| 414 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTypes) { |
| 415 RunTest(FILE_PATH_LITERAL("input-types.html")); |
| 416 } |
| 417 |
| 414 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { | 418 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { |
| 415 RunTest(FILE_PATH_LITERAL("label.html")); | 419 RunTest(FILE_PATH_LITERAL("label.html")); |
| 416 } | 420 } |
| 417 | 421 |
| 418 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { | 422 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { |
| 419 RunTest(FILE_PATH_LITERAL("list-markers.html")); | 423 RunTest(FILE_PATH_LITERAL("list-markers.html")); |
| 420 } | 424 } |
| 421 | 425 |
| 422 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 426 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 423 AccessibilityModalDialogClosed) { | 427 AccessibilityModalDialogClosed) { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 | 489 |
| 486 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 490 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 487 RunTest(FILE_PATH_LITERAL("ul.html")); | 491 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 488 } | 492 } |
| 489 | 493 |
| 490 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 494 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 491 RunTest(FILE_PATH_LITERAL("wbr.html")); | 495 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 492 } | 496 } |
| 493 | 497 |
| 494 } // namespace content | 498 } // namespace content |
| OLD | NEW |