| 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 | 265 |
| 266 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 266 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 267 AccessibilityAriaAutocomplete) { | 267 AccessibilityAriaAutocomplete) { |
| 268 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html")); | 268 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html")); |
| 269 } | 269 } |
| 270 | 270 |
| 271 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCombobox) { | 271 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCombobox) { |
| 272 RunTest(FILE_PATH_LITERAL("aria-combobox.html")); | 272 RunTest(FILE_PATH_LITERAL("aria-combobox.html")); |
| 273 } | 273 } |
| 274 | 274 |
| 275 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaFlowto) { |
| 276 RunTest(FILE_PATH_LITERAL("aria-flowto.html")); |
| 277 } |
| 278 |
| 275 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) { | 279 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) { |
| 276 RunTest(FILE_PATH_LITERAL("aria-invalid.html")); | 280 RunTest(FILE_PATH_LITERAL("aria-invalid.html")); |
| 277 } | 281 } |
| 278 | 282 |
| 279 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) { | 283 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) { |
| 280 RunTest(FILE_PATH_LITERAL("aria-level.html")); | 284 RunTest(FILE_PATH_LITERAL("aria-level.html")); |
| 281 } | 285 } |
| 282 | 286 |
| 283 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { | 287 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { |
| 284 RunTest(FILE_PATH_LITERAL("aria-menu.html")); | 288 RunTest(FILE_PATH_LITERAL("aria-menu.html")); |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 | 503 |
| 500 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 504 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 501 RunTest(FILE_PATH_LITERAL("ul.html")); | 505 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 502 } | 506 } |
| 503 | 507 |
| 504 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 508 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 505 RunTest(FILE_PATH_LITERAL("wbr.html")); | 509 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 506 } | 510 } |
| 507 | 511 |
| 508 } // namespace content | 512 } // namespace content |
| OLD | NEW |