| Index: LayoutTests/inspector/tracing/console-timeline.html
|
| diff --git a/LayoutTests/inspector/tracing/console-timeline.html b/LayoutTests/inspector/tracing/console-timeline.html
|
| index e7881fa933d21189e4f6cd8fd6cf06a2dad4f7a4..a30115f1ef1df6d54a836063121a6e480078a5dd 100644
|
| --- a/LayoutTests/inspector/tracing/console-timeline.html
|
| +++ b/LayoutTests/inspector/tracing/console-timeline.html
|
| @@ -254,7 +254,7 @@ function test()
|
| {
|
| thread.events().forEach(function(event)
|
| {
|
| - if (event.category === WebInspector.TracingModel.ConsoleEventCategory)
|
| + if (event.hasCategory(WebInspector.TracingModel.ConsoleEventCategory))
|
| InspectorTest.addResult(event.name);
|
| else if (event.name === WebInspector.TimelineModel.RecordType.TimeStamp)
|
| InspectorTest.addResult(event.args["data"]["message"]);
|
|
|