mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
82
parser/xml/test/unit/test_xml_declaration.js
Normal file
82
parser/xml/test/unit/test_xml_declaration.js
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
function noop() {}
|
||||
|
||||
function run_test() {
|
||||
var evts;
|
||||
|
||||
var contentHandler = {
|
||||
attrs: null,
|
||||
startDocument: function() {
|
||||
evts.push("startDocument");
|
||||
},
|
||||
endDocument: noop,
|
||||
|
||||
startElement: function startElement() {
|
||||
evts.push("startElement");
|
||||
},
|
||||
|
||||
endElement: noop,
|
||||
characters: noop,
|
||||
processingInstruction: noop,
|
||||
ignorableWhitespace: noop,
|
||||
startPrefixMapping: noop,
|
||||
endPrefixMapping: noop
|
||||
};
|
||||
|
||||
function XMLDeclHandler(version, encoding, standalone) {
|
||||
evts.splice(evts.length, 0, version, encoding, standalone);
|
||||
}
|
||||
|
||||
const nsISAXXMLReader = Components.interfaces.nsISAXXMLReader;
|
||||
var saxReader = Components.classes["@mozilla.org/saxparser/xmlreader;1"]
|
||||
.createInstance(nsISAXXMLReader);
|
||||
saxReader.contentHandler = contentHandler;
|
||||
saxReader.declarationHandler = XMLDeclHandler;
|
||||
|
||||
evts = [];
|
||||
saxReader.parseFromString("<root/>", "application/xml");
|
||||
do_check_eq(evts.length, 2);
|
||||
do_check_eq(evts[0], "startDocument");
|
||||
do_check_eq(evts[1], "startElement");
|
||||
|
||||
evts = [];
|
||||
saxReader.parseFromString("<?xml version='1.0'?><root/>", "application/xml");
|
||||
do_check_eq(evts.length, 5);
|
||||
do_check_eq(evts[0], "startDocument");
|
||||
do_check_eq(evts[1], "1.0");
|
||||
do_check_eq(evts[2], "");
|
||||
do_check_false(evts[3]);
|
||||
do_check_eq(evts[4], "startElement");
|
||||
|
||||
evts = [];
|
||||
saxReader.parseFromString("<?xml version='1.0' encoding='UTF-8'?><root/>", "application/xml");
|
||||
do_check_eq(evts.length, 5);
|
||||
do_check_eq(evts[0], "startDocument");
|
||||
do_check_eq(evts[1], "1.0");
|
||||
do_check_eq(evts[2], "UTF-8");
|
||||
do_check_false(evts[3]);
|
||||
do_check_eq(evts[4], "startElement");
|
||||
|
||||
evts = [];
|
||||
saxReader.parseFromString("<?xml version='1.0' standalone='yes'?><root/>", "application/xml");
|
||||
do_check_eq(evts.length, 5);
|
||||
do_check_eq(evts[0], "startDocument");
|
||||
do_check_eq(evts[1], "1.0");
|
||||
do_check_eq(evts[2], "");
|
||||
do_check_true(evts[3]);
|
||||
do_check_eq(evts[4], "startElement");
|
||||
|
||||
evts = [];
|
||||
saxReader.parseFromString("<?xml version='1.0' encoding='UTF-8' standalone='yes'?><root/>", "application/xml");
|
||||
do_check_eq(evts.length, 5);
|
||||
do_check_eq(evts[0], "startDocument");
|
||||
do_check_eq(evts[1], "1.0");
|
||||
do_check_eq(evts[2], "UTF-8");
|
||||
do_check_true(evts[3]);
|
||||
do_check_eq(evts[4], "startElement");
|
||||
|
||||
evts = [];
|
||||
// Not well-formed
|
||||
saxReader.parseFromString("<?xml encoding='UTF-8'?><root/>", "application/xml");
|
||||
do_check_eq(evts.length, 1);
|
||||
do_check_eq(evts[0], "startDocument");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue