| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "chrome/browser/ui/browser.h" | 8 #include "chrome/browser/ui/browser.h" |
| 9 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 9 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 10 #include "chrome/grit/options_test_resources.h" | 10 #include "chrome/grit/options_test_resources.h" |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 IN_PROC_BROWSER_TEST_F(WebUIResourceBrowserTest, MenuButtonTest) { | 211 IN_PROC_BROWSER_TEST_F(WebUIResourceBrowserTest, MenuButtonTest) { |
| 212 AddLibrary(IDR_WEBUI_JS_ASSERT); | 212 AddLibrary(IDR_WEBUI_JS_ASSERT); |
| 213 AddLibrary(IDR_WEBUI_JS_EVENT_TRACKER); | 213 AddLibrary(IDR_WEBUI_JS_EVENT_TRACKER); |
| 214 AddLibrary(IDR_WEBUI_JS_CR); | 214 AddLibrary(IDR_WEBUI_JS_CR); |
| 215 AddLibrary(IDR_WEBUI_JS_CR_UI); | 215 AddLibrary(IDR_WEBUI_JS_CR_UI); |
| 216 AddLibrary(IDR_WEBUI_JS_CR_UI_POSITION_UTIL); | 216 AddLibrary(IDR_WEBUI_JS_CR_UI_POSITION_UTIL); |
| 217 AddLibrary(IDR_WEBUI_JS_CR_UI_MENU_BUTTON); | 217 AddLibrary(IDR_WEBUI_JS_CR_UI_MENU_BUTTON); |
| 218 AddLibrary(IDR_WEBUI_JS_CR_UI_MENU); | 218 AddLibrary(IDR_WEBUI_JS_CR_UI_MENU); |
| 219 LoadFile(base::FilePath(FILE_PATH_LITERAL("menu_button_test.html"))); | 219 LoadFile(base::FilePath(FILE_PATH_LITERAL("menu_button_test.html"))); |
| 220 } | 220 } |
| 221 |
| 222 IN_PROC_BROWSER_TEST_F(WebUIResourceBrowserTest, SplitterTest) { |
| 223 AddLibrary(IDR_WEBUI_JS_CR); |
| 224 AddLibrary(IDR_WEBUI_JS_CR_UI); |
| 225 AddLibrary(IDR_WEBUI_JS_CR_UI_SPLITTER); |
| 226 LoadFile(base::FilePath(FILE_PATH_LITERAL("splitter_test.html"))); |
| 227 } |
| OLD | NEW |