| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 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 | 7 |
| 8 <link rel="import" href="/tracing/base/iteration_helpers.html"> | 8 <link rel="import" href="/tracing/base/utils.html"> |
| 9 <link rel="import" href="/tracing/core/test_utils.html"> | 9 <link rel="import" href="/tracing/core/test_utils.html"> |
| 10 <link rel="import" href="/tracing/model/container_memory_dump.html"> | 10 <link rel="import" href="/tracing/model/container_memory_dump.html"> |
| 11 <link rel="import" href="/tracing/model/memory_dump_test_utils.html"> | 11 <link rel="import" href="/tracing/model/memory_dump_test_utils.html"> |
| 12 <link rel="import" href="/tracing/model/vm_region.html"> | 12 <link rel="import" href="/tracing/model/vm_region.html"> |
| 13 <link rel="import" | 13 <link rel="import" |
| 14 href="/tracing/ui/analysis/memory_dump_sub_view_test_utils.html"> | 14 href="/tracing/ui/analysis/memory_dump_sub_view_test_utils.html"> |
| 15 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html"> | 15 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html"> |
| 16 <link rel="import" | 16 <link rel="import" |
| 17 href="/tracing/ui/analysis/memory_dump_vm_regions_details_pane.html"> | 17 href="/tracing/ui/analysis/memory_dump_vm_regions_details_pane.html"> |
| 18 | 18 |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 | 487 |
| 488 // Just check that the table has the right shape. | 488 // Just check that the table has the right shape. |
| 489 const table = viewEl.$.table; | 489 const table = viewEl.$.table; |
| 490 const columns = table.tableColumns; | 490 const columns = table.tableColumns; |
| 491 checkColumns(columns, EXPECTED_COLUMNS, AggregationMode.DIFF); | 491 checkColumns(columns, EXPECTED_COLUMNS, AggregationMode.DIFF); |
| 492 const rows = table.tableRows; | 492 const rows = table.tableRows; |
| 493 assert.lengthOf(rows, 1); | 493 assert.lengthOf(rows, 1); |
| 494 }); | 494 }); |
| 495 }); | 495 }); |
| 496 </script> | 496 </script> |
| OLD | NEW |