From 9dbb30c4a8b18ff2e28343b8ac08bc9ebcec0772 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 20 Sep 2010 22:24:10 +1000 Subject: [PATCH] Fix :pagestyle completion. --- common/content/buffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/buffer.js b/common/content/buffer.js index 3000d059..ed4cfa82 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -1298,7 +1298,7 @@ const Buffer = Module("buffer", { context.title = ["Stylesheet", "Location"]; // unify split style sheets - let styles = array.toObject([s.title, []] for (s in values(buffer.alternateStyleSheets))); + let styles = array.toObject([[s.title, []] for (s in values(buffer.alternateStyleSheets))]); buffer.alternateStyleSheets.forEach(function (style) { styles[style.title].push(style.href || "inline");