js/xpconnect/tests/unit/test_bug_442086.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* This Source Code Form is subject to the terms of the Mozilla Public
     2  * License, v. 2.0. If a copy of the MPL was not distributed with this
     3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     5 // Bug 442086 - XPConnect creates doubles without checking for
     6 //              the INT_FITS_IN_JSVAL case
     8 var types = [
     9     'PRUint8',
    10     'PRUint16',
    11     'PRUint32',
    12     'PRUint64',
    13     'PRInt16',
    14     'PRInt32',
    15     'PRInt64',
    16     'float',
    17     'double'
    18 ];
    20 function run_test()
    21 {
    22   var i;
    23   for (i = 0; i < types.length; i++) {
    24     var name = types[i];
    25     var cls = Components.classes["@mozilla.org/supports-" + name + ";1"];
    26     var ifname = ("nsISupports" + name.charAt(0).toUpperCase() +
    27                   name.substring(1));
    28     var f = cls.createInstance(Components.interfaces[ifname]);
    30     f.data = 0;
    31     switch (f.data) {
    32       case 0: /*ok*/ break;
    33       default: do_throw("FAILED - bug 442086 (type=" + name + ")");
    34     }
    35   }
    36 }

mercurial