Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.8_A2_T8.js
blob6ae39b2fd6c20158776d64a710a3b713807a2f40
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 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 ---*/
13 var __executed = /(\.(?!com|org)|\/)/.test("ah.com");
15 assert(!__executed, 'The value of !__executed is expected to be true');
17 reportCompare(0, 0);