| 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 cdb29b6408ad38ee30e110a66b17c0b541d0b4d5..aeb999cb72ac59a487bea3c9ba1205c57d157f64 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
|
| @@ -109,7 +109,7 @@ function test()
|
| WebInspector.domBreakpointsSidebarPane._setBreakpoint(rootElement, pane._breakpointTypes.AttributeModified, true);
|
| InspectorTest.addResult("Set DOM breakpoint.");
|
| var elementId = pane._createBreakpointId(rootElement.id, pane._breakpointTypes.AttributeModified);
|
| - var element = pane._breakpointElements[elementId];
|
| + var element = pane._breakpointElements.get(elementId);
|
| element._checkboxElement.click();
|
| InspectorTest.addResult("Uncheck DOM breakpoint.");
|
| InspectorTest.evaluateInPagePromise("modifyAttribute('rootElement', 'data-test-breakpoint-toggle', 'foo')").then(step2);
|
|
|