summaryrefslogtreecommitdiffstats
path: root/mozilla-703633.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-02-03 20:49:57 +0100
committerRemi Collet <fedora@famillecollet.com>2012-02-03 20:49:57 +0100
commit8241f26b6e42e9876c74dc7d7e7f5e66e371430a (patch)
treeae931764a8b541ecdbca3acd1378f014029b2729 /mozilla-703633.patch
parentcddddf22d553ed768d48eb08816fc4ba050a7bed (diff)
Firefox: fixes non functional web development tools
Diffstat (limited to 'mozilla-703633.patch')
-rw-r--r--mozilla-703633.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/mozilla-703633.patch b/mozilla-703633.patch
new file mode 100644
index 0000000..b2a9451
--- /dev/null
+++ b/mozilla-703633.patch
@@ -0,0 +1,29 @@
+# HG changeset patch
+# User Mike Hommey <mh+mozilla@glandium.org>
+# Date 1321637776 -3600
+# Node ID a5c78674f5edf4c1cea091ae900e187f4f8ce6a9
+# Parent 4a16dc96aab3c56b1dda84e197e1e6c0db8fab6d
+Bug 703633 - TreePanel.jsm uses a resource:/// url that ought to be resource://gre/
+
+diff --git a/browser/devtools/highlighter/TreePanel.jsm b/browser/devtools/highlighter/TreePanel.jsm
+--- a/browser/devtools/highlighter/TreePanel.jsm
++++ b/browser/devtools/highlighter/TreePanel.jsm
+@@ -40,17 +40,17 @@
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ *
+ * ***** END LICENSE BLOCK ***** */
+
+ const Cu = Components.utils;
+
+ Cu.import("resource:///modules/domplate.jsm");
+ Cu.import("resource:///modules/InsideOutBox.jsm");
+-Cu.import("resource:///modules/Services.jsm");
++Cu.import("resource://gre/modules/Services.jsm");
+
+ var EXPORTED_SYMBOLS = ["TreePanel", "DOMHelpers"];
+
+ const INSPECTOR_URI = "chrome://browser/content/inspector.html";
+
+ /**
+ * TreePanel
+ * A container for the Inspector's HTML Tree Panel widget constructor function.