| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints.html
|
| index 80c5cadfbe7e3423a310ccf15d33d2b35cce5830..4d2e5979e4d610f9563f49413963787d824a41f2 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints.html
|
| @@ -116,14 +116,14 @@ function test()
|
|
|
| function testTimerFiredBreakpoint(next)
|
| {
|
| - pane._setBreakpoint("instrumentation:timerFired");
|
| + pane._setBreakpoint("instrumentation:setTimeout.callback");
|
| InspectorTest.waitUntilPaused(paused);
|
| InspectorTest.evaluateInPage("setTimeout(timerFired, 10)");
|
|
|
| function paused(callFrames)
|
| {
|
| InspectorTest.captureStackTrace(callFrames);
|
| - pane._removeBreakpoint("instrumentation:timerFired");
|
| + pane._removeBreakpoint("instrumentation:setTimeout.callback");
|
| InspectorTest.resumeExecution(next);
|
| }
|
| },
|
|
|