| 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/files/file_util.h" | 10 #include "base/files/file_util.h" | 
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 399 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 399 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 
| 400                        AccessibilityAriaMenuitemradio) { | 400                        AccessibilityAriaMenuitemradio) { | 
| 401   RunTest(FILE_PATH_LITERAL("aria-menuitemradio.html")); | 401   RunTest(FILE_PATH_LITERAL("aria-menuitemradio.html")); | 
| 402 } | 402 } | 
| 403 | 403 | 
| 404 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 404 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 
| 405                        AccessibilityAriaOrientation) { | 405                        AccessibilityAriaOrientation) { | 
| 406   RunTest(FILE_PATH_LITERAL("aria-orientation.html")); | 406   RunTest(FILE_PATH_LITERAL("aria-orientation.html")); | 
| 407 } | 407 } | 
| 408 | 408 | 
|  | 409 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNone) { | 
|  | 410   RunTest(FILE_PATH_LITERAL("aria-none.html")); | 
|  | 411 } | 
|  | 412 | 
| 409 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 413 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 
| 410                        AccessibilityAriaPressed) { | 414                        AccessibilityAriaPressed) { | 
| 411   RunTest(FILE_PATH_LITERAL("aria-pressed.html")); | 415   RunTest(FILE_PATH_LITERAL("aria-pressed.html")); | 
| 412 } | 416 } | 
| 413 | 417 | 
| 414 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 418 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 
| 415                        AccessibilityAriaProgressbar) { | 419                        AccessibilityAriaProgressbar) { | 
| 416   RunTest(FILE_PATH_LITERAL("aria-progressbar.html")); | 420   RunTest(FILE_PATH_LITERAL("aria-progressbar.html")); | 
| 417 } | 421 } | 
| 418 | 422 | 
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 738 | 742 | 
| 739 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 
| 740   RunTest(FILE_PATH_LITERAL("ul.html")); | 744   RunTest(FILE_PATH_LITERAL("ul.html")); | 
| 741 } | 745 } | 
| 742 | 746 | 
| 743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 
| 744   RunTest(FILE_PATH_LITERAL("wbr.html")); | 748   RunTest(FILE_PATH_LITERAL("wbr.html")); | 
| 745 } | 749 } | 
| 746 | 750 | 
| 747 }  // namespace content | 751 }  // namespace content | 
| OLD | NEW | 
|---|