diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2017-07-30 07:52:35 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-12 15:29:15 +0100 |
commit | 442e2e04efa366a08f6b278e5241d53ba85d1d04 (patch) | |
tree | 3408385438c95f35f354b3d20522961b01d7ca60 | |
parent | 0f99df52d5309158c7b916581c5a79496b1844db (diff) | |
download | UXP-442e2e04efa366a08f6b278e5241d53ba85d1d04.tar UXP-442e2e04efa366a08f6b278e5241d53ba85d1d04.tar.gz UXP-442e2e04efa366a08f6b278e5241d53ba85d1d04.tar.lz UXP-442e2e04efa366a08f6b278e5241d53ba85d1d04.tar.xz UXP-442e2e04efa366a08f6b278e5241d53ba85d1d04.zip |
[regression] Places - proper import bookmarks from HTML containing <HR> separators
-rw-r--r-- | toolkit/components/places/BookmarkHTMLUtils.jsm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolkit/components/places/BookmarkHTMLUtils.jsm b/toolkit/components/places/BookmarkHTMLUtils.jsm index 2285aae6e..f8fc0ba51 100644 --- a/toolkit/components/places/BookmarkHTMLUtils.jsm +++ b/toolkit/components/places/BookmarkHTMLUtils.jsm @@ -746,6 +746,7 @@ BookmarkImporter.prototype = { this._curFrame.inDescription = true; break; case "hr": + this._closeContainer(aElt); this._handleSeparator(aElt); break; } |