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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-viewport-stick-to-bottom.html

Issue 2565113002: DevTools: update console viewport scroll when prompt is resized (Closed)
Patch Set: Created 4 years 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/console/console-viewport-stick-to-bottom.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-viewport-stick-to-bottom.html b/third_party/WebKit/LayoutTests/inspector/console/console-viewport-stick-to-bottom.html
index d183a277fc3bfe172d0d9d5bc6f0f49917c0ac83..a8a8a289a52da2599a2df3c7b725f06af474631e 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-viewport-stick-to-bottom.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-viewport-stick-to-bottom.html
@@ -104,7 +104,7 @@ function test()
consoleView._updateStickToBottomOnMouseDown();
viewport.element.scrollTop -= 10;
- InspectorTest.addSniffer(Console.ConsoleView.prototype, "_scheduleViewportRefreshForTest", onMessageAdded);
+ InspectorTest.addSniffer(Console.ConsoleView.prototype, "scheduleViewportRefreshForTest", onMessageAdded);
InspectorTest.evaluateInConsole("1 + 1");
/**
@@ -113,7 +113,7 @@ function test()
function onMessageAdded(muted)
{
InspectorTest.addResult("New messages were muted: " + muted);
- InspectorTest.addSniffer(Console.ConsoleView.prototype, "_scheduleViewportRefreshForTest", onMouseUpScheduledRefresh);
+ InspectorTest.addSniffer(Console.ConsoleView.prototype, "scheduleViewportRefreshForTest", onMouseUpScheduledRefresh);
InspectorTest.addSniffer(Console.ConsoleView.prototype, "_updateViewportStickinessForTest", onUpdateStickiness);
consoleView._updateStickToBottomOnMouseUp();
}

Powered by Google App Engine
This is Rietveld 408576698