| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <head> | 8 <head> |
| 9 <title>TimelineModel tests</title> | 9 <title>TimelineModel tests</title> |
| 10 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.j
s"></script> | 10 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.j
s"></script> |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 assertEquals(4, cpu.maxTimestamp); | 108 assertEquals(4, cpu.maxTimestamp); |
| 109 } | 109 } |
| 110 | 110 |
| 111 function testModelBounds_OneCpu() { | 111 function testModelBounds_OneCpu() { |
| 112 } | 112 } |
| 113 | 113 |
| 114 | 114 |
| 115 function testModelBounds_OneCpuOneThread() { | 115 function testModelBounds_OneCpuOneThread() { |
| 116 } | 116 } |
| 117 | 117 |
| 118 function testModelCanImportEmpty() { |
| 119 var m; |
| 120 m = new TimelineModel([]); |
| 121 m = new TimelineModel(""); |
| 122 } |
| 118 </script> | 123 </script> |
| 119 </body> | 124 </body> |
| 120 </html> | 125 </html> |
| OLD | NEW |