summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_bookmarks_html_singleframe.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/places/tests/unit/test_bookmarks_html_singleframe.js')
-rw-r--r--toolkit/components/places/tests/unit/test_bookmarks_html_singleframe.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/toolkit/components/places/tests/unit/test_bookmarks_html_singleframe.js b/toolkit/components/places/tests/unit/test_bookmarks_html_singleframe.js
new file mode 100644
index 000000000..02b430ff2
--- /dev/null
+++ b/toolkit/components/places/tests/unit/test_bookmarks_html_singleframe.js
@@ -0,0 +1,32 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* vim:set ts=2 sw=2 sts=2 et: */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+// Test for bug #801450
+
+// Get Services
+Cu.import("resource://gre/modules/BookmarkHTMLUtils.jsm");
+
+function run_test()
+{
+ run_next_test();
+}
+
+add_task(function* test_bookmarks_html_singleframe()
+{
+ let bookmarksFile = OS.Path.join(do_get_cwd().path, "bookmarks_html_singleframe.html");
+ yield BookmarkHTMLUtils.importFromFile(bookmarksFile, true);
+
+ let root = PlacesUtils.getFolderContents(PlacesUtils.bookmarksMenuFolderId).root;
+ do_check_eq(root.childCount, 1);
+ let folder = root.getChild(0);
+ PlacesUtils.asContainer(folder).containerOpen = true;
+ do_check_eq(folder.title, "Subtitle");
+ do_check_eq(folder.childCount, 1);
+ let bookmark = folder.getChild(0);
+ do_check_eq(bookmark.uri, "http://www.mozilla.org/");
+ do_check_eq(bookmark.title, "Mozilla");
+ folder.containerOpen = false;
+});