| Index: LayoutTests/inspector-protocol/timeline/timeline-dispatchEvent.html
|
| diff --git a/LayoutTests/inspector-protocol/timeline/timeline-dispatchEvent.html b/LayoutTests/inspector-protocol/timeline/timeline-dispatchEvent.html
|
| index 1302ac55f2281c46eacd3c5598957e3e61f04f77..586aad58069f616f3b65641e36fc5e4db02c141c 100644
|
| --- a/LayoutTests/inspector-protocol/timeline/timeline-dispatchEvent.html
|
| +++ b/LayoutTests/inspector-protocol/timeline/timeline-dispatchEvent.html
|
| @@ -46,7 +46,7 @@ function test()
|
|
|
| function windowEventFilter(type, e)
|
| {
|
| - return e.name === "EventDispatch" && e.args.type === type;
|
| + return e.name === "EventDispatch" && e.args.data.type === type;
|
| };
|
|
|
| var windowEventNames = [ "click", "beforeunload", "unload", "load" ];
|
| @@ -68,7 +68,7 @@ function test()
|
| {
|
| var formattedEvents = devtoolsEvents.map(function(e)
|
| {
|
| - return e.name + "(" + e.args.type + ")";
|
| + return e.name + "(" + e.args.data.type + ")";
|
| });
|
| InspectorTest.log("FAIL: " + message + " devtools.timeline events: " + JSON.stringify(formattedEvents, null, 2));
|
| }
|
|
|