S15.10.2.8_A2_T8.js (650B)
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 The form (?! Disjunction ) specifies a zero-width negative lookahead. 7 In order for it to succeed, the pattern inside Disjunction must fail to match at the current position. 8 The current position is not advanced before matching the sequel 9 es5id: 15.10.2.8_A2_T8 10 description: Execute /(\.(?!com|org)|\/)/.test("ah.com") and check results 11 ---*/ 12 13 var __executed = /(\.(?!com|org)|\/)/.test("ah.com"); 14 15 assert(!__executed, 'The value of !__executed is expected to be true'); 16 17 reportCompare(0, 0);