forked from mirrors/gecko-dev
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D36052 --HG-- extra : source : b5be5b4f4b47c256e28a29f665dc754f6407ee7f
15 lines
492 B
JavaScript
15 lines
492 B
JavaScript
function run_test() {
|
|
let urlUtils = Cc["@mozilla.org/url-classifier/utils;1"].getService(
|
|
Ci.nsIUrlClassifierUtils
|
|
);
|
|
|
|
// The google protocol version should be "2.2" until we enable SB v4
|
|
// by default.
|
|
equal(urlUtils.getProtocolVersion("google"), "2.2");
|
|
|
|
// Mozilla protocol version will stick to "2.2".
|
|
equal(urlUtils.getProtocolVersion("mozilla"), "2.2");
|
|
|
|
// Unknown provider version will be "2.2".
|
|
equal(urlUtils.getProtocolVersion("unknown-provider"), "2.2");
|
|
}
|