From 51c30f57082ed3ff6cd8c8277001c5c266a6dea9 Mon Sep 17 00:00:00 2001 From: Justin Lebar Date: Tue, 30 Oct 2012 21:35:48 -0400 Subject: [PATCH] Backed out changeset 9b533d393792 (bug 802366) --- dom/apps/src/Webapps.jsm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dom/apps/src/Webapps.jsm b/dom/apps/src/Webapps.jsm index 16be235f24c..4c7cc7ebbb8 100644 --- a/dom/apps/src/Webapps.jsm +++ b/dom/apps/src/Webapps.jsm @@ -1782,6 +1782,10 @@ this.DOMApplicationRegistry = { switch (message.name) { case "Webapps:ClearBrowserData": this._clearPrivateData(appId, true); + // XXXbent This is a hack until bug 802366 is fixed. Currently all data + // loaded in mozbrowser frames within an app believe that their + // appId is 0. + this._clearPrivateData(0, true); break; } },