summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/test_bug872772.js
blob: bfb0d7f4f87e2320b8ae6e180f66e8baca7df7bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
function run_test() {

  // Make a content sandbox with an Xrayable object.
  // NB: We use an nsEP here so that we can have access to Components, but still
  // have Xray behavior from this scope.
  var contentSB = new Cu.Sandbox(['http://www.google.com'],
                                 { wantGlobalProperties: ["XMLHttpRequest"] });

  // Make an XHR in the content sandbox.
  Cu.evalInSandbox('xhr = new XMLHttpRequest();', contentSB);

  // Make sure that waivers can be set as Xray expandos.
  var xhr = contentSB.xhr;
  Assert.ok(Cu.isXrayWrapper(xhr));
  xhr.unwaivedExpando = xhr;
  Assert.ok(Cu.isXrayWrapper(xhr.unwaivedExpando));
  var waived = xhr.wrappedJSObject;
  Assert.ok(!Cu.isXrayWrapper(waived));
  xhr.waivedExpando = waived;
  Assert.ok(!Cu.isXrayWrapper(xhr.waivedExpando));

  // Try the same thing for getters/setters, even though that's kind of
  // contrived.
  Cu.evalInSandbox('function f() {}', contentSB);
  var f = contentSB.f;
  var fWaiver = Cu.waiveXrays(f);
  Assert.ok(f != fWaiver);
  Assert.ok(Cu.unwaiveXrays(fWaiver) === f);
  Object.defineProperty(xhr, 'waivedAccessors', {get: fWaiver, set: fWaiver});
  var desc = Object.getOwnPropertyDescriptor(xhr, 'waivedAccessors');
  Assert.ok(desc.get === fWaiver);
  Assert.ok(desc.set === fWaiver);
}