mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-05 16:09:02 +00:00
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
/* -*- 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;
|
|
});
|