summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/chrome/test_bug1042436.xul
blob: 355ffcfa42a0cb42140cfdffd19d4a0544e800d4 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1042436
-->
<window title="Mozilla Bug 1042436"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>

  <!-- test results are displayed in the html:body -->
  <body xmlns="http://www.w3.org/1999/xhtml">
  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1042436"
     target="_blank">Mozilla Bug 1042436</a>
  </body>

  <!-- test code goes here -->
  <script type="application/javascript">
  <![CDATA[
  /** Test for Bug 1042436 **/
  SimpleTest.waitForExplicitFinish();
  const Cu = Components.utils;

  var contentSb = Cu.Sandbox('http://www.example.com');
  var nonXrayableObj = new contentSb.WeakMap();
  nonXrayableObj.wrappedJSObject.someExpandoProperty = 42;
  nonXrayableObj.wrappedJSObject.someOtherExpandoProperty = 52;


  SimpleTest.expectConsoleMessages(function() {
      nonXrayableObj.someExpandoProperty;
      nonXrayableObj.someOtherExpandoProperty;

      var chromeSb = Cu.Sandbox(this);
      var contentObjWithGetter = contentSb.eval('({ get getterProp() {return 42;}, valueProp: 42 })');
      is(contentObjWithGetter.wrappedJSObject.getterProp, 42, "Getter prop set up correctly");
      is(contentObjWithGetter.getterProp, undefined, "Xrays work right");
      is(contentObjWithGetter.valueProp, 42, "Getter prop set up correctly");
      chromeSb.contentObjWithGetter = contentObjWithGetter;
      Cu.evalInSandbox('contentObjWithGetter.getterProp; contentObjWithGetter.valueProp; contentObjWithGetter.getterProp;',
                       chromeSb, "1.7", "http://phony.example.com/file.js", 99);
  },
  [{ errorMessage: /property "someExpandoProperty" \(reason: object is not safely Xrayable/, sourceName: /test_bug1042436/, isWarning: true },
   { errorMessage: /property "getterProp" \(reason: property has accessor/, sourceName: /phony/, lineNumber: 99, isWarning: true } ],
  SimpleTest.finish.bind(SimpleTest));

  ]]>
  </script>
</window>