| Index: third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html
|
| index 0356a4d5ed5c6ef8f5d67ec4b6416c08b94799a1..19551793168178497b7da920e9b9e6f2cdd1d092 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html
|
| @@ -104,15 +104,15 @@
|
| ]
|
| },
|
| "idleTime": 202.88199791684747,
|
| - "startTime": 100000,
|
| - "endTime": 100000 + 111.110 + 22.220 + 1.000,
|
| + "startTime": 1375445600.000847,
|
| + "endTime": 1375445601.070847,
|
| "samples": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
|
| };
|
| var model = new WebInspector.CPUProfileDataModel(profile);
|
| printTree("", model.profileHead);
|
| function printTree(padding, node)
|
| {
|
| - InspectorTest.addResult(`${padding}${node.functionName} id:${node.id} total:${node.total} self:${node.self} depth:${node.depth}`);
|
| + InspectorTest.addResult(padding + node.functionName + " id:" + node.id + " hits:" + node.hitCount + " depth:" + node.depth);
|
| node.children.forEach(printTree.bind(null, padding + " "));
|
| }
|
| InspectorTest.addResult(model.samples.join(", "));
|
|
|