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

Unified Diff: Source/devtools/front_end/sources/FilteredItemSelectionDialog.js

Issue 1097163004: DevTools: zoom frames upon double click, iterate over frames using arrows. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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: Source/devtools/front_end/sources/FilteredItemSelectionDialog.js
diff --git a/Source/devtools/front_end/sources/FilteredItemSelectionDialog.js b/Source/devtools/front_end/sources/FilteredItemSelectionDialog.js
index a8ec067b30378b1e7a7a6b884047faa8e61f8d7d..582a243c5bfaa1d7dafca6bb7cc75dc805f0fdf0 100644
--- a/Source/devtools/front_end/sources/FilteredItemSelectionDialog.js
+++ b/Source/devtools/front_end/sources/FilteredItemSelectionDialog.js
@@ -36,9 +36,8 @@
*/
WebInspector.FilteredItemSelectionDialog = function(delegate)
{
- WebInspector.DialogDelegate.call(this);
+ WebInspector.DialogDelegate.call(this, createElement("div"));
- this.element = createElement("div");
this.element.className = "filtered-item-list-dialog";
this.element.addEventListener("keydown", this._onKeyDown.bind(this), false);
this.element.appendChild(WebInspector.View.createStyleElement("sources/filteredItemSelectionDialog.css"));

Powered by Google App Engine
This is Rietveld 408576698