| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 | 325 |
| 326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) { | 326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) { |
| 327 RunTest(FILE_PATH_LITERAL("canvas.html")); | 327 RunTest(FILE_PATH_LITERAL("canvas.html")); |
| 328 } | 328 } |
| 329 | 329 |
| 330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 331 AccessibilityCheckboxNameCalc) { | 331 AccessibilityCheckboxNameCalc) { |
| 332 RunTest(FILE_PATH_LITERAL("checkbox-name-calc.html")); | 332 RunTest(FILE_PATH_LITERAL("checkbox-name-calc.html")); |
| 333 } | 333 } |
| 334 | 334 |
| 335 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { |
| 336 RunTest(FILE_PATH_LITERAL("dialog.html")); |
| 337 } |
| 338 |
| 335 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { | 339 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { |
| 336 RunTest(FILE_PATH_LITERAL("div.html")); | 340 RunTest(FILE_PATH_LITERAL("div.html")); |
| 337 } | 341 } |
| 338 | 342 |
| 339 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) { | 343 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) { |
| 340 RunTest(FILE_PATH_LITERAL("dl.html")); | 344 RunTest(FILE_PATH_LITERAL("dl.html")); |
| 341 } | 345 } |
| 342 | 346 |
| 343 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 347 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 344 AccessibilityContenteditableDescendants) { | 348 AccessibilityContenteditableDescendants) { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 | 451 |
| 448 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 452 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 449 RunTest(FILE_PATH_LITERAL("ul.html")); | 453 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 450 } | 454 } |
| 451 | 455 |
| 452 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 456 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 453 RunTest(FILE_PATH_LITERAL("wbr.html")); | 457 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 454 } | 458 } |
| 455 | 459 |
| 456 } // namespace content | 460 } // namespace content |
| OLD | NEW |