summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/test_bug1033927.js
blob: 8c3ce7c265a7646ffe2bbbe8ed6a96946a8de64b (plain)
1
2
3
4
5
6
7
8
const Cu = Components.utils;
function run_test() {
  var sb = Cu.Sandbox('http://www.example.com', { wantGlobalProperties: ['XMLHttpRequest']});
  var xhr = Cu.evalInSandbox('new XMLHttpRequest()', sb);
  do_check_eq(xhr.toString(), '[object XMLHttpRequest]');
  do_check_eq((new sb.Object()).toString(), '[object Object]');
  do_check_eq(sb.Object.prototype.toString.call(new sb.Uint16Array()), '[object Uint16Array]');
}