From 54ce7cf07e1eb9d81ab5e55dfc3d12aba7596d44 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Tue, 17 Mar 2015 21:06:06 -0700 Subject: [PATCH] Bug 1144351 - Add newline at the end of 'JSDOMParser error' messages. r=mfinkle --- toolkit/components/reader/JSDOMParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/components/reader/JSDOMParser.js b/toolkit/components/reader/JSDOMParser.js index 44c86caca4ca..827b95858e19 100644 --- a/toolkit/components/reader/JSDOMParser.js +++ b/toolkit/components/reader/JSDOMParser.js @@ -27,7 +27,7 @@ (function (global) { function error(m) { - dump("JSDOMParser error: " + m); + dump("JSDOMParser error: " + m + "\n"); } // When a style is set in JS, map it to the corresponding CSS attribute