| Index: LayoutTests/inspector/tracing/timeline-filtering.html
|
| diff --git a/LayoutTests/inspector/tracing/timeline-filtering.html b/LayoutTests/inspector/tracing/timeline-filtering.html
|
| index afd39c2b82a08ca59f5d543fb00b02bb92a530ff..681608b521a4689fe995aa539f3ab3570828873c 100644
|
| --- a/LayoutTests/inspector/tracing/timeline-filtering.html
|
| +++ b/LayoutTests/inspector/tracing/timeline-filtering.html
|
| @@ -64,7 +64,7 @@ function test()
|
| prefix.push(" ");
|
| }
|
| var mark = record.expandable() ? (record.collapsed() ? "+" : "-") : " ";
|
| - InspectorTest.addResult(prefix.join("") + mark + record.record().data().message);
|
| + InspectorTest.addResult(prefix.join("") + mark + record.record().traceEvent().args["data"].message);
|
| }
|
|
|
| function dumpRecords()
|
| @@ -87,7 +87,7 @@ function test()
|
| var collapseList = {"bar04":true, "foo13": true};
|
| for (var i = 0; i < records.length; ++i) {
|
| var record = records[i];
|
| - if (collapseList[record.record().data().message])
|
| + if (collapseList[record.record().traceEvent().args["data"].message])
|
| record.setCollapsed(true);
|
| }
|
| model.invalidateFilteredRecords();
|
|
|