| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/inline-scope-variables.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/inline-scope-variables.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/inline-scope-variables.html
|
| index 80d94c9314b3dc7209e4c1860f229dfa8d24829b..f433ea5f372002711de5b86a1e4a13de79767ed0 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/inline-scope-variables.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/inline-scope-variables.html
|
| @@ -22,13 +22,13 @@ var test = function()
|
|
|
| function step1()
|
| {
|
| - InspectorTest.addSnifferPromise(WebInspector.JavaScriptSourceFrame.prototype, "_renderDecorations").then(step2);
|
| + InspectorTest.addSnifferPromise(Sources.JavaScriptSourceFrame.prototype, "_renderDecorations").then(step2);
|
| InspectorTest.runTestFunctionAndWaitUntilPaused();
|
| }
|
|
|
| function step2()
|
| {
|
| - var currentFrame = WebInspector.panels.sources.visibleView;
|
| + var currentFrame = UI.panels.sources.visibleView;
|
| var decorations = currentFrame.textEditor._decorations;
|
| for (var line of decorations.keysArray()) {
|
| var lineDecorations = Array.from(decorations.get(line)).map(decoration => decoration.element.textContent).join(", ");
|
|
|