зеркало из https://github.com/mozilla/gecko-dev.git
Bug 552025 - Remove the instances of nsINavHistoryResultObserver.containerOpened/Closed. r=mak
This commit is contained in:
Родитель
33c656b039
Коммит
13a98bf3aa
|
@ -849,8 +849,6 @@ function NavHistoryResultObserver() {}
|
|||
|
||||
NavHistoryResultObserver.prototype = {
|
||||
batching: function () {},
|
||||
containerClosed: function () {},
|
||||
containerOpened: function () {},
|
||||
containerStateChanged: function () {},
|
||||
invalidateContainer: function () {},
|
||||
nodeAnnotationChanged: function () {},
|
||||
|
|
|
@ -97,7 +97,6 @@ add_test(function check_history_query() {
|
|||
var root = result.root;
|
||||
root.containerOpen = true;
|
||||
|
||||
// nsINavHistoryResultObserver.containerOpened
|
||||
do_check_neq(resultObserver.openedContainer, null);
|
||||
|
||||
// nsINavHistoryResultObserver.nodeInserted
|
||||
|
@ -148,7 +147,6 @@ add_test(function check_history_query() {
|
|||
}, null);
|
||||
do_check_false(resultObserver.inBatchMode);
|
||||
|
||||
// nsINavHistoryResultObserver.containerClosed
|
||||
root.containerOpen = false;
|
||||
do_check_eq(resultObserver.closedContainer, resultObserver.openedContainer);
|
||||
result.removeObserver(resultObserver);
|
||||
|
@ -168,7 +166,6 @@ add_test(function check_bookmarks_query() {
|
|||
var root = result.root;
|
||||
root.containerOpen = true;
|
||||
|
||||
// nsINavHistoryResultObserver.containerOpened
|
||||
do_check_neq(resultObserver.openedContainer, null);
|
||||
|
||||
// nsINavHistoryResultObserver.nodeInserted
|
||||
|
@ -217,7 +214,6 @@ add_test(function check_bookmarks_query() {
|
|||
}, null);
|
||||
do_check_false(resultObserver.inBatchMode);
|
||||
|
||||
// nsINavHistoryResultObserver.containerClosed
|
||||
root.containerOpen = false;
|
||||
do_check_eq(resultObserver.closedContainer, resultObserver.openedContainer);
|
||||
result.removeObserver(resultObserver);
|
||||
|
@ -234,7 +230,6 @@ add_test(function check_mixed_query() {
|
|||
var root = result.root;
|
||||
root.containerOpen = true;
|
||||
|
||||
// nsINavHistoryResultObserver.containerOpened
|
||||
do_check_neq(resultObserver.openedContainer, null);
|
||||
|
||||
// nsINavHistoryResultObserver.batching
|
||||
|
@ -252,7 +247,6 @@ add_test(function check_mixed_query() {
|
|||
}, null);
|
||||
do_check_false(resultObserver.inBatchMode);
|
||||
|
||||
// nsINavHistoryResultObserver.containerClosed
|
||||
root.containerOpen = false;
|
||||
do_check_eq(resultObserver.closedContainer, resultObserver.openedContainer);
|
||||
result.removeObserver(resultObserver);
|
||||
|
|
Загрузка…
Ссылка в новой задаче