| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints.html
|
| index 40de3d5174624c8c5f9d4203adc44b1de4e53806..821d380094b769dca28ea43cb6dd8e2aaec725da 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints.html
|
| @@ -153,7 +153,14 @@ function test()
|
| function step2(callFrames)
|
| {
|
| pane._removeBreakpoint(rootElement, pane._breakpointTypes.AttributeModified);
|
| - next();
|
| + InspectorTest.addResult("Ensure the breakpoint is actually removed.");
|
| + InspectorTest.evaluateInPagePromise("modifyAttribute('rootElement', 'data-test', 'foo')").then(step3);
|
| + InspectorTest.addResult("Modify rootElement data-test attribute.");
|
| + }
|
| +
|
| + function step3()
|
| + {
|
| + InspectorTest.waitUntilResumed(next);
|
| }
|
| },
|
|
|
|
|