| 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 "chrome/browser/ui/webui/bidi_checker_web_ui_test.h" | 5 #include "chrome/browser/ui/webui/bidi_checker_web_ui_test.h" |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/i18n/rtl.h" | 8 #include "base/i18n/rtl.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 TestNewTabPage) { | 219 TestNewTabPage) { |
| 220 RunBidiCheckerOnPage(chrome::kChromeUINewTabURL); | 220 RunBidiCheckerOnPage(chrome::kChromeUINewTabURL); |
| 221 } | 221 } |
| 222 | 222 |
| 223 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, | 223 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, |
| 224 TestNewTabPage) { | 224 TestNewTabPage) { |
| 225 RunBidiCheckerOnPage(chrome::kChromeUINewTabURL); | 225 RunBidiCheckerOnPage(chrome::kChromeUINewTabURL); |
| 226 } | 226 } |
| 227 | 227 |
| 228 //============================== | 228 //============================== |
| 229 // chrome://plugins | |
| 230 //============================== | |
| 231 | |
| 232 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, | |
| 233 TestPluginsPage) { | |
| 234 RunBidiCheckerOnPage(chrome::kChromeUIPluginsURL); | |
| 235 } | |
| 236 | |
| 237 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, | |
| 238 TestPluginsPage) { | |
| 239 RunBidiCheckerOnPage(chrome::kChromeUIPluginsURL); | |
| 240 } | |
| 241 | |
| 242 //============================== | |
| 243 // chrome://settings-frame | 229 // chrome://settings-frame |
| 244 //============================== | 230 //============================== |
| 245 | 231 |
| 246 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, | 232 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, |
| 247 TestSettingsPage) { | 233 TestSettingsPage) { |
| 248 RunBidiCheckerOnPage(chrome::kChromeUISettingsFrameURL); | 234 RunBidiCheckerOnPage(chrome::kChromeUISettingsFrameURL); |
| 249 } | 235 } |
| 250 | 236 |
| 251 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, | 237 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, |
| 252 TestSettingsPage) { | 238 TestSettingsPage) { |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 | 729 |
| 744 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, | 730 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, |
| 745 TestHistoryFrame) { | 731 TestHistoryFrame) { |
| 746 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); | 732 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); |
| 747 } | 733 } |
| 748 | 734 |
| 749 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, | 735 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, |
| 750 TestHistoryFrame) { | 736 TestHistoryFrame) { |
| 751 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); | 737 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); |
| 752 } | 738 } |
| OLD | NEW |