S15.10.3.1_A1_T2.js (580B)
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_T2 9 description: R is new RegExp and instance is RegExp(R, function(){}()) 10 ---*/ 11 12 var __re = new RegExp; 13 var __instance = RegExp(__re, function(){}()); 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);