OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <!-- | 2 <!-- |
3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. |
4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
6 --> | 6 --> |
7 <html i18n-values="dir:textdirection;"> | 7 <html i18n-values="dir:textdirection;"> |
8 <head> | 8 <head> |
9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
10 <title i18n-content="title"></title> | 10 <title i18n-content="title"></title> |
11 <script> | 11 <script> |
12 var css = [ | 12 var css = [ |
13 'list.css', | 13 'list.css', |
14 'table.css' | 14 'table.css' |
15 ]; | 15 ]; |
16 | 16 |
17 var script = [ | 17 var script = [ |
18 'local_strings.js', | 18 'local_strings.js', |
19 'i18n_template.js', | 19 'i18n_template.js', |
20 | 20 |
21 'util.js', | 21 'util.js', |
22 'cr.js', | 22 'cr.js', |
23 'cr/locale.js', | 23 'cr/event_target.js', |
| 24 |
24 'cr/ui.js', | 25 'cr/ui.js', |
25 'cr/event_target.js', | |
26 'cr/ui/array_data_model.js', | 26 'cr/ui/array_data_model.js', |
27 'cr/ui/list_item.js', | 27 'cr/ui/list_item.js', |
28 'cr/ui/list_selection_model.js', | 28 'cr/ui/list_selection_model.js', |
29 'cr/ui/list_single_selection_model.js', | 29 'cr/ui/list_single_selection_model.js', |
30 'cr/ui/list_selection_controller.js', | 30 'cr/ui/list_selection_controller.js', |
31 'cr/ui/list.js', | 31 'cr/ui/list.js', // Must be loaded after list_selection_model.js. |
| 32 'cr/ui/grid.js', // Must be loaded after list_item.js. |
32 | 33 |
33 'cr/ui/splitter.js', | 34 'cr/ui/splitter.js', |
34 'cr/ui/table/table_splitter.js', | 35 'cr/ui/table/table_splitter.js', |
35 | |
36 'cr/ui/table/table_column.js', | 36 'cr/ui/table/table_column.js', |
37 'cr/ui/table/table_column_model.js', | 37 'cr/ui/table/table_column_model.js', |
38 'cr/ui/table/table_header.js', | 38 'cr/ui/table/table_header.js', |
39 'cr/ui/table/table_list.js', | 39 'cr/ui/table/table_list.js', |
40 'cr/ui/table.js', | 40 'cr/ui/table.js', // Must be loaded after table_column_model.js. |
41 | |
42 'cr/ui/grid.js', | |
43 ]; | 41 ]; |
44 | 42 |
45 (function() { | 43 (function() { |
46 // Switch to 'test harness' mode when loading from a file url. | 44 // Switch to 'test harness' mode when loading from a file url. |
47 var isHarness = document.location.protocol == 'file:'; | 45 var isHarness = document.location.protocol == 'file:'; |
48 | 46 |
49 // In test harness mode we load resources from relative dirs. | 47 // In test harness mode we load resources from relative dirs. |
50 var prefix = isHarness ? './shared/' : 'chrome://resources/'; | 48 var prefix = isHarness ? './shared/' : 'chrome://resources/'; |
51 | 49 |
52 for (var i = 0; i < css.length; ++i) { | 50 for (var i = 0; i < css.length; ++i) { |
(...skipping 24 matching lines...) Expand all Loading... |
77 <a href="#" id="about-memory-link" i18n-content="about_memory_link"></a> | 75 <a href="#" id="about-memory-link" i18n-content="about_memory_link"></a> |
78 </div> | 76 </div> |
79 <div class="footer-right-container"> | 77 <div class="footer-right-container"> |
80 <button id="kill-process" i18n-content="kill_process"></button> | 78 <button id="kill-process" i18n-content="kill_process"></button> |
81 <button id="close-window" i18n-content="close_window"></button> | 79 <button id="close-window" i18n-content="close_window"></button> |
82 </div> | 80 </div> |
83 </div> | 81 </div> |
84 </body> | 82 </body> |
85 </html> | 83 </html> |
86 | 84 |
OLD | NEW |