summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/places/src/BookmarkHTMLUtils.jsm5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/places/src/BookmarkHTMLUtils.jsm b/components/places/src/BookmarkHTMLUtils.jsm
index 6b4ea7934..8a54135a7 100644
--- a/components/places/src/BookmarkHTMLUtils.jsm
+++ b/components/places/src/BookmarkHTMLUtils.jsm
@@ -1052,8 +1052,9 @@ BookmarkExporter.prototype = {
this._writeLine("<!-- This is an automatically generated file.");
this._writeLine(" It will be read and overwritten.");
this._writeLine(" DO NOT EDIT! -->");
- this._writeLine('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; ' +
- 'charset=UTF-8">');
+ this._writeLine('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">');
+ this._writeLine(`<META HTTP-EQUIV="Content-Security-Policy"
+ CONTENT="default-src 'self'; script-src 'none'; img-src data: *; object-src 'none'"></META>`);
this._writeLine("<TITLE>Bookmarks</TITLE>");
},