mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9cbdb22a88
--HG-- extra : transplant_source : %C1%B65%07%B60XS%AB%DD%EF7Hx%A5%8Cz%11%04%97
22 lines
570 B
JavaScript
22 lines
570 B
JavaScript
/* 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/. */
|
|
|
|
function test_bookmarkhtml() {
|
|
let bmarks = gProfD.clone();
|
|
bmarks.append("bookmarks.html");
|
|
|
|
let tbmarks = gDirSvc.get("BMarks", Ci.nsIFile);
|
|
do_check_true(bmarks.equals(tbmarks));
|
|
}
|
|
|
|
function run_test() {
|
|
[test_bookmarkhtml
|
|
].forEach(function(f) {
|
|
do_test_pending();
|
|
print("Running test: " + f.name);
|
|
f();
|
|
do_test_finished();
|
|
});
|
|
}
|