mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
function run_test () {
|
|
for (var i = 0; i < tests.length && tests[i][0]; ++i) {
|
|
if (!tests[i][0].call()) {
|
|
do_throw(tests[i][1]);
|
|
}
|
|
}
|
|
}
|
|
|
|
var tests = [
|
|
[ test1, "Unable to parse basic XML document" ],
|
|
[ test2, "ParseXML doesn't return nsIDOMDocument" ],
|
|
[ test3, "ParseXML return value's documentElement is not nsIDOMElement" ],
|
|
[ test4, "" ],
|
|
[ test5, "" ],
|
|
[ test6, "" ],
|
|
[ null ]
|
|
];
|
|
|
|
function test1() {
|
|
return ParseXML("<root/>");
|
|
}
|
|
|
|
function test2() {
|
|
return (ParseXML("<root/>") instanceof nsIDOMDocument);
|
|
}
|
|
|
|
function test3() {
|
|
return (ParseXML("<root/>").documentElement instanceof nsIDOMElement);
|
|
}
|
|
|
|
function test4() {
|
|
var doc = ParseXML("<root/>");
|
|
do_check_eq(doc.documentElement.namespaceURI, null);
|
|
return true;
|
|
}
|
|
|
|
function test5() {
|
|
var doc = ParseXML("<root xmlns=''/>");
|
|
do_check_eq(doc.documentElement.namespaceURI, null);
|
|
return true;
|
|
}
|
|
|
|
function test6() {
|
|
var doc = ParseXML("<root xmlns='ns1'/>");
|
|
do_check_neq(doc.documentElement.namespaceURI, null);
|
|
do_check_eq(doc.documentElement.namespaceURI, 'ns1');
|
|
return true;
|
|
}
|