| Index: LayoutTests/inspector/tracing/timeline-script-tag-1.html
|
| diff --git a/LayoutTests/inspector/tracing/timeline-script-tag-1.html b/LayoutTests/inspector/tracing/timeline-script-tag-1.html
|
| index 9c2519f4f2015950913971772c367a341a5ab1b4..65875fd712fcb27189ffd07541b0f463856500e3 100644
|
| --- a/LayoutTests/inspector/tracing/timeline-script-tag-1.html
|
| +++ b/LayoutTests/inspector/tracing/timeline-script-tag-1.html
|
| @@ -27,29 +27,17 @@ function test()
|
|
|
| function step3()
|
| {
|
| - function format1(record)
|
| + function format(record)
|
| {
|
| - if (record.type() === WebInspector.TimelineModel.RecordType.ParseHTML) {
|
| + if (record.type() === WebInspector.TimelineModel.RecordType.EvaluateScript) {
|
| InspectorTest.dumpTimelineRecord(record, undefined, undefined, [
|
| - "ParseHTML",
|
| - "EvaluateScript",
|
| - "EventDispatch",
|
| - "FunctionCall",
|
| "TimeStamp",
|
| - "MarkLoad",
|
| - "MarkDOMContent"
|
| ]);
|
| - }
|
| - }
|
| -
|
| - function format2(record)
|
| - {
|
| - if (record.type() === WebInspector.TimelineModel.RecordType.EvaluateScript)
|
| InspectorTest.printTimelineRecordProperties(record);
|
| + }
|
| }
|
|
|
| - InspectorTest.printTimelineRecords(null, InspectorTest.safeWrap(format1));
|
| - InspectorTest.printTimelineRecords(null, InspectorTest.safeWrap(format2));
|
| + InspectorTest.printTimelineRecords(null, InspectorTest.safeWrap(format));
|
| InspectorTest.completeTest();
|
| }
|
| }
|
|
|