From 839d05e94759ad9e7fcb6168a43f52e22d8debe6 Mon Sep 17 00:00:00 2001 From: "philringnalda@gmail.com" Date: Sat, 3 May 2008 13:33:24 -0700 Subject: [PATCH] Ignore siteURI annotation changes that are for the default livemark, not our livemark --- toolkit/components/places/tests/chrome/test_341972a.xul | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toolkit/components/places/tests/chrome/test_341972a.xul b/toolkit/components/places/tests/chrome/test_341972a.xul index c218f0270c3..d18a843e150 100644 --- a/toolkit/components/places/tests/chrome/test_341972a.xul +++ b/toolkit/components/places/tests/chrome/test_341972a.xul @@ -51,7 +51,8 @@ var observer = // nsIAnnotationObserver onItemAnnotationSet: function(aItemId, aAnnotationName) { - if (aAnnotationName == "livemark/siteURI") { + if (aAnnotationName == "livemark/siteURI" && + aItemId == gLivemarkId) { var newSiteURI = annosvc.getItemAnnotation(aItemId, aAnnotationName); ok(newSiteURI == FEEDSITESPEC, "livemark site URI changed to " + newSiteURI + " not to value in feed");