Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/inline-scope-variables.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(", ");

Powered by Google App Engine
This is Rietveld 408576698