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

Unified Diff: third_party/WebKit/LayoutTests/inspector/help/release-note-unit.html

Issue 2733493002: DevTools: fix bug with persisting drawer selection (Closed)
Patch Set: fix Created 3 years, 9 months 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/help/release-note-unit.html
diff --git a/third_party/WebKit/LayoutTests/inspector/help/release-note-unit.html b/third_party/WebKit/LayoutTests/inspector/help/release-note-unit.html
index e5cf3b40e5843b4c2a004772b97c16e16470c73c..ad19a5fdb5383c4b4e7c52d0bfde3f61d75ff5f1 100644
--- a/third_party/WebKit/LayoutTests/inspector/help/release-note-unit.html
+++ b/third_party/WebKit/LayoutTests/inspector/help/release-note-unit.html
@@ -14,12 +14,12 @@ function test()
Help._latestReleaseNote = Help._getReleaseNoteByVersion(browserVersion);
InspectorTest.addResult(`Last seen version: ${lastSeenVersion}`);
InspectorTest.addResult(`Browser version: ${browserVersion}`);
- InspectorTest.addSniffer(UI.inspectorView, "showPanel", onPanelShown);
+ InspectorTest.addSniffer(UI.viewManager, "showView", onShowView);
var showedReleaseNote = false;
Help._showReleaseNoteIfNeeded(lastSeenVersion, browserVersion);
- function onPanelShown() {
+ function onShowView() {
showedReleaseNote = true;
}
if (showedReleaseNote)

Powered by Google App Engine
This is Rietveld 408576698