summaryrefslogtreecommitdiffstats
path: root/dom/base/test/chrome/file_bug616841.xhtml
blob: 3651a00226b49f2c23a728527438e1d2aaeb505d (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
                 type="text/css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=616841
-->
<window title="Mozilla Bug 616841"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  onload="start()">
  <label value="Mozilla Bug 616841"/>
  <!-- test code goes here -->
  <script type="application/javascript"><![CDATA[
    /* global messageManager, sendAsyncMessage */
    const FRAME_SCRIPT =
"data:,addMessageListener(\n"+
"  'cmp',\n"+
"  function (m) {\n"+
"    sendAsyncMessage('cmp', { i: m.json.i,\n"+
"                              cmp: m.json.a.localeCompare(m.json.b) });\n"+
"  });\n"+
"sendAsyncMessage('contentReady');";

    var toCompare = [ [ "C", "D" ],
                      [ "D", "C" ],
                      [ "\u010C", "D" ],
                      [ "D", "\u010C" ] ];
    var nCmps = 0;

    function recvContentReady() {
      for (var i = 0; i < toCompare.length; ++i) {
        var pair = toCompare[i];
        messageManager.broadcastAsyncMessage("cmp",
                                             { i, a: pair[0], b: pair[1] });
      }
    }

    function recvCmp(m) {
      var i = m.json.i, cmp = m.json.cmp;
      var pair = toCompare[i];
      window.arguments[0].is(pair[0].localeCompare(pair[1]), cmp, "localeCompare returned same result in frame script");

      if (toCompare.length == ++nCmps) {
         messageManager.removeMessageListener("cmp", recvCmp);
        finish();
      }
    }

    function start() {
      messageManager.addMessageListener("contentReady", recvContentReady);
      messageManager.addMessageListener("cmp", recvCmp);
      messageManager.loadFrameScript(FRAME_SCRIPT, true);
    }

    function finish() {
      window.arguments[0].setTimeout(function() { this.done(); }, 0);
      window.close();
    }

  ]]></script>

  <browser id="browser" type="content" src="about:blank"/>
</window>