tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

S15.10.3.1_A1_T1.js (536B)


      1 // Copyright 2009 the Sputnik authors.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 info: |
      6    If pattern is an object R whose [[Class]] property is "RegExp" and flags
      7    is undefined, then return R unchanged
      8 es5id: 15.10.3.1_A1_T1
      9 description: R is /x/i and instance is RegExp(R)
     10 ---*/
     11 
     12 var __re = /x/i;
     13 var __instance = RegExp(__re);
     14 __re.indicator = 1;
     15 
     16 assert.sameValue(__instance.indicator, 1, 'The value of __instance.indicator is expected to be 1');
     17 
     18 reportCompare(0, 0);