michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: Cu.import("resource://services-common/utils.js"); michael@0: michael@0: function run_test() { michael@0: let data = ["Zm9vYmE=", "Zm9vYmE==", "Zm9vYmE==="]; michael@0: for (let d in data) { michael@0: do_check_eq(CommonUtils.safeAtoB(data[d]), "fooba"); michael@0: } michael@0: }