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

Unified Diff: third_party/WebKit/LayoutTests/inspector/help/release-note.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/help/release-note-unit.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/help/release-note.html
diff --git a/third_party/WebKit/LayoutTests/inspector/help/release-note.html b/third_party/WebKit/LayoutTests/inspector/help/release-note.html
index 5504b5b3a37dcf4438d49afd284866ecff1e20f1..099a0d1bdfe17003e265c775909b269ec5a292d8 100644
--- a/third_party/WebKit/LayoutTests/inspector/help/release-note.html
+++ b/third_party/WebKit/LayoutTests/inspector/help/release-note.html
@@ -38,13 +38,13 @@ function test() {
},
];
- InspectorTest.addSniffer(UI.inspectorView, "showPanel", onPanelShown);
+ InspectorTest.addSniffer(UI.viewManager, "showView", onShowView);
dgozman 2017/03/13 21:23:31 sniffer :-(
InspectorTest.addResult(`Browser version: ${Help.browserVersion()}\n`);
Help.showReleaseNoteIfNeeded();
- function onPanelShown(viewId, panelPromise) {
- panelPromise.then(() => {
+ function onShowView(viewId, isUserGesture, viewPromise) {
+ viewPromise.then(() => {
var releaseNoteView = UI.viewManager.view("release-note");
var releaseNoteElement = releaseNoteView[UI.View._widgetSymbol].contentElement;
InspectorTest.addResult("Dumping release note text:");
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/help/release-note-unit.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698