| 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/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 1387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1398 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1398 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1399 AccessibilityModalDialogClosed) { | 1399 AccessibilityModalDialogClosed) { |
| 1400 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); | 1400 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); |
| 1401 } | 1401 } |
| 1402 | 1402 |
| 1403 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1403 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1404 AccessibilityModalDialogOpened) { | 1404 AccessibilityModalDialogOpened) { |
| 1405 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); | 1405 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); |
| 1406 } | 1406 } |
| 1407 | 1407 |
| 1408 // http://crbug.com/738497 |
| 1408 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1409 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1409 AccessibilityModalDialogInIframeClosed) { | 1410 DISABLED_AccessibilityModalDialogInIframeClosed) { |
| 1410 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); | 1411 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); |
| 1411 } | 1412 } |
| 1412 | 1413 |
| 1413 // Disabled because it is flaky in several platforms | 1414 // Disabled because it is flaky in several platforms |
| 1414 /* | 1415 /* |
| 1415 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1416 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1416 AccessibilityModalDialogInIframeOpened) { | 1417 AccessibilityModalDialogInIframeOpened) { |
| 1417 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); | 1418 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); |
| 1418 } | 1419 } |
| 1419 */ | 1420 */ |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1593 // crbug.com/281952 | 1594 // crbug.com/281952 |
| 1594 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1595 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1595 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1596 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1596 } | 1597 } |
| 1597 | 1598 |
| 1598 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1599 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1599 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1600 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1600 } | 1601 } |
| 1601 | 1602 |
| 1602 } // namespace content | 1603 } // namespace content |
| OLD | NEW |