| 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 // require: array_data_model.js | 5 // require: array_data_model.js |
| 6 // require: list_selection_model.js | 6 // require: list_selection_model.js |
| 7 // require: list_selection_controller.js | 7 // require: list_selection_controller.js |
| 8 // require: list_item.js | 8 // require: list_item.js |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 * because list items can contain controls that can be focused, and for some | 1289 * because list items can contain controls that can be focused, and for some |
| 1290 * purposes (e.g., styling), the list can still be conceptually focused at | 1290 * purposes (e.g., styling), the list can still be conceptually focused at |
| 1291 * that point even though it doesn't actually have the page focus. | 1291 * that point even though it doesn't actually have the page focus. |
| 1292 */ | 1292 */ |
| 1293 cr.defineProperty(List, 'hasElementFocus', cr.PropertyKind.BOOL_ATTR); | 1293 cr.defineProperty(List, 'hasElementFocus', cr.PropertyKind.BOOL_ATTR); |
| 1294 | 1294 |
| 1295 return { | 1295 return { |
| 1296 List: List | 1296 List: List |
| 1297 }; | 1297 }; |
| 1298 }); | 1298 }); |
| OLD | NEW |