| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="heap-snapshot-test.js"></script> | 4 <script src="heap-snapshot-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 | |
| 7 function test() | 6 function test() |
| 8 { | 7 { |
| 9 var instanceCount = 25; | 8 var instanceCount = 25; |
| 10 function createHeapSnapshot() | 9 function createHeapSnapshot() |
| 11 { | 10 { |
| 12 return InspectorTest.createHeapSnapshot(instanceCount); | 11 return InspectorTest.createHeapSnapshot(instanceCount); |
| 13 } | 12 } |
| 14 | 13 |
| 15 InspectorTest.runHeapSnapshotTestSuite([ | 14 InspectorTest.runHeapSnapshotTestSuite([ |
| 16 function testShowAll(next) | 15 function testShowAll(next) |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 </script> | 142 </script> |
| 144 </head> | 143 </head> |
| 145 <body onload="runTest()"> | 144 <body onload="runTest()"> |
| 146 <p> | 145 <p> |
| 147 Tests Containment view of detailed heap snapshots. | 146 Tests Containment view of detailed heap snapshots. |
| 148 The "Show All" button must show all nodes. | 147 The "Show All" button must show all nodes. |
| 149 Test object distances calculation. | 148 Test object distances calculation. |
| 150 </p> | 149 </p> |
| 151 </body> | 150 </body> |
| 152 </html> | 151 </html> |
| OLD | NEW |