| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-dom-xhr-event-breakpoints.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-dom-xhr-event-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-dom-xhr-event-breakpoints.html
|
| index d43006369872a93965c5460f3835164a473bb0cd..5b6c4f3c0a226ee4e8597d46cbd3f56643370fe0 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-dom-xhr-event-breakpoints.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-dom-xhr-event-breakpoints.html
|
| @@ -85,7 +85,7 @@ function test()
|
| function step1(node)
|
| {
|
| var pane = WebInspector.domBreakpointsSidebarPane;
|
| - pane._setBreakpoint(node, pane._breakpointTypes.SubtreeModified, true);
|
| + pane._setBreakpoint(node, WebInspector.DOMBreakpointsSidebarPane.BreakpointTypes.SubtreeModified, true);
|
| InspectorTest.evaluateInPageWithTimeout("appendElement('rootElement', 'childElement')");
|
| InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
|
| }
|
| @@ -95,7 +95,7 @@ function test()
|
| {
|
| var pane = self.runtime.sharedInstance(WebInspector.XHRBreakpointsSidebarPane);
|
| pane._setBreakpoint("foo", true);
|
| - InspectorTest.evaluateInPageWithTimeout("sendXHR('/foo?a=b')");
|
| + InspectorTest.evaluateInPageWithTimeout("sendXHR('file:///foo?a=b')");
|
| InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
|
| },
|
|
|
|
|