js/src/tests/test262/ch12/12.10/S12.10_A1.11_T4.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 // Copyright 2009 the Sputnik authors.  All rights reserved.
     2 // This code is governed by the BSD license found in the LICENSE file.
     4 /**
     5  * The with statement adds a computed object to the front of the
     6  * scope chain of the current execution context
     7  *
     8  * @path ch12/12.10/S12.10_A1.11_T4.js
     9  * @description Calling a function within "with" statement declared without the statement, leading to completion by exception
    10  * @noStrict
    11  */
    13 this.p1 = 1;
    14 this.p2 = 2;
    15 this.p3 = 3;
    16 var result = "result";
    17 var myObj = {p1: 'a', 
    18              p2: 'b', 
    19              p3: 'c',
    20              value: 'myObj_value',
    21              valueOf : function(){return 'obj_valueOf';},
    22              parseInt : function(){return 'obj_parseInt';},
    23              NaN : 'obj_NaN',
    24              Infinity : 'obj_Infinity',
    25              eval     : function(){return 'obj_eval';},
    26              parseFloat : function(){return 'obj_parseFloat';},
    27              isNaN      : function(){return 'obj_isNaN';},
    28              isFinite   : function(){return 'obj_isFinite';}
    29 }
    30 var del;
    31 var st_p1 = "p1";
    32 var st_p2 = "p2";
    33 var st_p3 = "p3";
    34 var st_parseInt = "parseInt";
    35 var st_NaN = "NaN";
    36 var st_Infinity = "Infinity";
    37 var st_eval = "eval";
    38 var st_parseFloat = "parseFloat";
    39 var st_isNaN = "isNaN";
    40 var st_isFinite = "isFinite";
    42 try {
    43   var f = function(){
    44     st_p1 = p1;
    45     st_p2 = p2;
    46     st_p3 = p3;
    47     st_parseInt = parseInt;
    48     st_NaN = NaN;
    49     st_Infinity = Infinity;
    50     st_eval = eval;
    51     st_parseFloat = parseFloat;
    52     st_isNaN = isNaN;
    53     st_isFinite = isFinite;
    54     p1 = 'x1';
    55     this.p2 = 'x2';
    56     del = delete p3;
    57     var p4 = 'x4';
    58     p5 = 'x5';
    59     var value = 'value';
    60     throw value;
    61   }
    62   with(myObj){
    63     f();
    64   }
    65 } catch(e){
    66   result = e;
    67 }
    69 if(!(result === "value")){
    70   $ERROR('#0: result === "value". Actual:  result ==='+ result  );
    71 }
    73 if(!(p1 === "x1")){
    74   $ERROR('#1: p1 === "x1". Actual:  p1 ==='+ p1  );
    75 }
    77 if(!(p2 === "x2")){
    78   $ERROR('#2: p2 === "x2". Actual:  p2 ==='+ p2  );
    79 }
    81 try{
    82   p3;
    83   $ERROR('#3: p3 is nod defined');
    84 }
    85 catch(e){
    86 }
    88 try {
    89   p4;
    90   $ERROR('#4: p4 is not defined');
    91 } catch(e) {    
    92 }
    94 if(!(p5 === "x5")){
    95   $ERROR('#5: p5 === "x5". Actual:  p5 ==='+ p5  );
    96 }
    98 if(!(myObj.p1 === "a")){
    99   $ERROR('#6: myObj.p1 === "a". Actual:  myObj.p1 ==='+ myObj.p1  );
   100 }
   102 if(!(myObj.p2 === "b")){
   103   $ERROR('#7: myObj.p2 === "b". Actual:  myObj.p2 ==='+ myObj.p2  );
   104 }
   106 if(!(myObj.p3 === "c")){
   107   $ERROR('#8: myObj.p3 === "c". Actual:  myObj.p3 ==='+ myObj.p3  );
   108 }
   110 if(!(myObj.p4 === undefined)){
   111   $ERROR('#9: myObj.p4 === undefined. Actual:  myObj.p4 ==='+ myObj.p4  );
   112 }
   114 if(!(myObj.p5 === undefined)){
   115   $ERROR('#10: myObj.p5 === undefined. Actual:  myObj.p5 ==='+ myObj.p5  );
   116 }
   118 if(!(st_parseInt === parseInt)){
   119   $ERROR('#11: st_parseInt === parseInt. Actual:  st_parseInt ==='+ st_parseInt  );
   120 }
   122 if(!isNaN(st_NaN)){
   123   $ERROR('#12: st_NaN === NaN. Actual:  st_NaN ==='+ st_NaN  );
   124 }
   126 if(!(st_Infinity === Infinity)){
   127   $ERROR('#13: st_Infinity === Infinity. Actual:  st_Infinity ==='+ st_Infinity  );
   128 }
   130 if(!(st_eval === eval)){
   131   $ERROR('#14: st_eval === eval. Actual:  st_eval ==='+ st_eval  );
   132 }
   134 if(!(st_parseFloat === parseFloat)){
   135   $ERROR('#15: st_parseFloat === parseFloat. Actual:  st_parseFloat ==='+ st_parseFloat  );
   136 }
   138 if(!(st_isNaN === isNaN)){
   139   $ERROR('#16: st_isNaN === isNaN. Actual:  st_isNaN ==='+ st_isNaN  );
   140 }
   142 if(!(st_isFinite === isFinite)){
   143   $ERROR('#17: st_isFinite === isFinite. Actual:  st_isFinite ==='+ st_isFinite  );
   144 }
   146 try {
   147   value;
   148   $ERROR('#18: value is not defined');
   149 } catch(e) {    
   150 }
   152 if(!(myObj.value === "myObj_value")){
   153   $ERROR('#19: myObj.value === "myObj_value". Actual:  myObj.value ==='+ myObj.value  );
   154 }

mercurial