Bug 1256658 - Make inspector search next/previous based on ctrl-g by default, and cmd-g on osx;r=bgrins

MozReview-Commit-ID: F5NsNGmoeL8
This commit is contained in:
Steve Melia 2016-03-26 15:21:23 +00:00
Родитель 184e838496
Коммит 5c6d9164b2
4 изменённых файлов: 67 добавлений и 16 удалений

Просмотреть файл

@ -7,13 +7,14 @@
const {Cu, Ci} = require("chrome");
const promise = require("promise");
loader.lazyGetter(this, "system", () => require("devtools/shared/system"));
loader.lazyGetter(this, "EventEmitter", () => require("devtools/shared/event-emitter"));
loader.lazyGetter(this, "AutocompletePopup", () => require("devtools/client/shared/autocomplete-popup").AutocompletePopup);
// Maximum number of selector suggestions shown in the panel.
const MAX_SUGGESTIONS = 15;
/**
* Converts any input field into a document search box.
*
@ -108,7 +109,11 @@ InspectorSearch.prototype = {
}
if (event.keyCode === event.DOM_VK_RETURN) {
this._onSearch(event.shiftKey);
} if (event.keyCode === Ci.nsIDOMKeyEvent.DOM_VK_G && event.metaKey) {
}
const modifierKey = system.constants.platform === "macosx" ? event.metaKey :
event.ctrlKey;
if (event.keyCode === Ci.nsIDOMKeyEvent.DOM_VK_G && modifierKey) {
this._onSearch(event.shiftKey);
event.preventDefault();
}

Просмотреть файл

@ -111,6 +111,7 @@ skip-if = (e10s && debug) # Bug 1250058 - Docshell leak on debug e10s
[browser_inspector_search-06.js]
[browser_inspector_search-07.js]
[browser_inspector_search-reserved.js]
[browser_inspector_search-selection.js]
[browser_inspector_select-docshell.js]
[browser_inspector_select-last-selected.js]
[browser_inspector_search-navigation.js]

Просмотреть файл

@ -53,20 +53,6 @@ add_task(function* () {
yield checkCorrectButton(inspector, "#iframe-2");
info("Press shift-enter to select the previous node matching this suggestion");
onSelect = inspector.once("inspector-updated");
EventUtils.synthesizeKey("VK_RETURN", { shiftKey: true }, inspector.panelWin);
yield onSelect;
yield checkCorrectButton(inspector, "#iframe-1");
info("Press enter to cycle through multiple nodes matching this suggestion");
onSelect = inspector.once("inspector-updated");
EventUtils.synthesizeKey("VK_RETURN", {}, inspector.panelWin);
yield onSelect;
yield checkCorrectButton(inspector, "#iframe-2");
info("Press enter to cycle through multiple nodes matching this suggestion");
onSelect = inspector.once("inspector-updated");
EventUtils.synthesizeKey("VK_RETURN", {}, inspector.panelWin);

Просмотреть файл

@ -0,0 +1,59 @@
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Testing navigation between nodes in search results
var {AppConstants} = Cu.import("resource://gre/modules/AppConstants.jsm");
const TEST_URL = URL_ROOT + "doc_inspector_search.html";
add_task(function* () {
let {inspector} = yield openInspectorForURL(TEST_URL);
info("Focus the search box");
yield focusSearchBoxUsingShortcut(inspector.panelWin);
info("Enter body > p to search");
let processingDone = once(inspector.searchSuggestions, "processing-done");
EventUtils.sendString("body > p", inspector.panelWin);
yield processingDone;
info("Wait for search query to complete");
yield inspector.searchSuggestions._lastQuery;
let msg = "Press enter and expect a new selection";
yield sendKeyAndCheck(inspector, msg, "VK_RETURN", {}, "#p1");
msg = "Press enter to cycle through multiple nodes";
yield sendKeyAndCheck(inspector, msg, "VK_RETURN", {}, "#p2");
msg = "Press shift-enter to select the previous node";
yield sendKeyAndCheck(inspector, msg, "VK_RETURN", { shiftKey: true }, "#p1");
if (AppConstants.platform === "macosx") {
msg = "Press meta-g to cycle through multiple nodes";
yield sendKeyAndCheck(inspector, msg, "VK_G", { metaKey: true }, "#p2");
msg = "Press shift+meta-g to select the previous node";
yield sendKeyAndCheck(inspector, msg, "VK_G", { metaKey: true, shiftKey: true }, "#p1");
} else {
msg = "Press ctrl-g to cycle through multiple nodes";
yield sendKeyAndCheck(inspector, msg, "VK_G", { ctrlKey: true }, "#p2");
msg = "Press shift+ctrl-g to select the previous node";
yield sendKeyAndCheck(inspector, msg, "VK_G", { ctrlKey: true, shiftKey: true }, "#p1");
}
});
let sendKeyAndCheck = Task.async(function*(inspector, description, key, modifiers, expectedId) {
info(description);
let onSelect = inspector.once("inspector-updated");
EventUtils.synthesizeKey(key, modifiers, inspector.panelWin);
yield onSelect;
let selectedNode = inspector.selection.nodeFront;
info(selectedNode.id + " is selected with text " + inspector.searchBox.value);
let targetNode = yield getNodeFront(expectedId, inspector);
is(selectedNode, targetNode, "Correct node " + expectedId + " is selected");
});