summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/chrome/file_expandosharing.jsm
blob: 2e7ffe5416cb43eb48227cf915da53bf74697085 (plain)
1
2
3
4
5
6
7
8
9
10
this.EXPORTED_SYMBOLS = ['checkFromJSM'];

this.checkFromJSM = function checkFromJSM(target, is_op) {
  is_op(target.numProp, 42, "Number expando works");
  is_op(target.strProp, "foo", "String expando works");
  // If is_op is todo_is, target.objProp will be undefined.
  try {
    is_op(target.objProp.bar, "baz", "Object expando works");
  } catch(e) { is_op(0, 1, "No object expando"); }
}