| 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"> | |
| 9 <link rel="import" href="/tracing/base/raf.html"> | 8 <link rel="import" href="/tracing/base/raf.html"> |
| 9 <link rel="import" href="/tracing/base/utils.html"> |
| 10 <link rel="import" href="/tracing/core/test_utils.html"> | 10 <link rel="import" href="/tracing/core/test_utils.html"> |
| 11 <link rel="import" href="/tracing/model/event_set.html"> | 11 <link rel="import" href="/tracing/model/event_set.html"> |
| 12 <link rel="import" href="/tracing/model/model.html"> | 12 <link rel="import" href="/tracing/model/model.html"> |
| 13 <link rel="import" href="/tracing/model/sample.html"> | 13 <link rel="import" href="/tracing/model/sample.html"> |
| 14 <link rel="import" href="/tracing/model/thread_slice.html"> | 14 <link rel="import" href="/tracing/model/thread_slice.html"> |
| 15 <link rel="import" href="/tracing/ui/analysis/related_events.html"> | 15 <link rel="import" href="/tracing/ui/analysis/related_events.html"> |
| 16 | 16 |
| 17 <script> | 17 <script> |
| 18 'use strict'; | 18 'use strict'; |
| 19 | 19 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 }); | 212 }); |
| 213 | 213 |
| 214 const samplesTitles = overlappingSamples.map(function(e) { | 214 const samplesTitles = overlappingSamples.map(function(e) { |
| 215 return e.title; | 215 return e.title; |
| 216 }); | 216 }); |
| 217 assert.sameMembers(samplesTitles, | 217 assert.sameMembers(samplesTitles, |
| 218 ['b10_1', 'b10_2', 'b12', 'b15_1', 'b15_2']); | 218 ['b10_1', 'b10_2', 'b12', 'b15_1', 'b15_2']); |
| 219 }); | 219 }); |
| 220 }); | 220 }); |
| 221 </script> | 221 </script> |
| OLD | NEW |