summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_bookmarks_html_singleframe.js
blob: 02b430ff238c300f4f4c65c7f7b9906baf4f5a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
});