Bug 1171723 - Fix clear button in variable view. r=bgrins

This commit is contained in:
Alexandre Poirot 2015-07-21 13:24:26 -07:00
Родитель 8f0b7e0738
Коммит 57d8b2b908
3 изменённых файлов: 5 добавлений и 2 удалений

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

@ -98,6 +98,7 @@ function testVariablesAndPropertiesFiltering() {
function firstFilter() {
let expanded = once(gVariables, "fetched");
typeText(gSearchBox, "constructor");
gSearchBox.doCommand();
return expanded.then(testFiltered);
}

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

@ -105,6 +105,7 @@ function testVariablesAndPropertiesFiltering() {
function firstFilter() {
let expanded = once(gVariables, "fetched");
typeText(gSearchBox, "\"Function\"");
gSearchBox.doCommand();
return expanded.then(testFiltered);
}
@ -139,6 +140,7 @@ function testVariablesAndPropertiesFiltering() {
backspaceText(gSearchBox, 10);
let expanded = once(gVariables, "fetched");
typeText(gSearchBox, "\"Function\"");
gSearchBox.doCommand();
expanded.then(testFiltered);
}

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

@ -453,7 +453,7 @@ VariablesView.prototype = {
searchbox.setAttribute("placeholder", this._searchboxPlaceholder);
searchbox.setAttribute("type", "search");
searchbox.setAttribute("flex", "1");
searchbox.addEventListener("input", this._onSearchboxInput, false);
searchbox.addEventListener("command", this._onSearchboxInput, false);
searchbox.addEventListener("keypress", this._onSearchboxKeyPress, false);
container.appendChild(searchbox);
@ -470,7 +470,7 @@ VariablesView.prototype = {
return;
}
this._searchboxContainer.remove();
this._searchboxNode.removeEventListener("input", this._onSearchboxInput, false);
this._searchboxNode.removeEventListener("command", this._onSearchboxInput, false);
this._searchboxNode.removeEventListener("keypress", this._onSearchboxKeyPress, false);
this._searchboxContainer = null;