From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../test262/built-ins/RegExp/S15.10.2.8_A2_T5.js | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 js/src/tests/test262/built-ins/RegExp/S15.10.2.8_A2_T5.js (limited to 'js/src/tests/test262/built-ins/RegExp/S15.10.2.8_A2_T5.js') diff --git a/js/src/tests/test262/built-ins/RegExp/S15.10.2.8_A2_T5.js b/js/src/tests/test262/built-ins/RegExp/S15.10.2.8_A2_T5.js new file mode 100644 index 0000000000..19941de311 --- /dev/null +++ b/js/src/tests/test262/built-ins/RegExp/S15.10.2.8_A2_T5.js @@ -0,0 +1,47 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: | + The form (?! Disjunction ) specifies a zero-width negative lookahead. + In order for it to succeed, the pattern inside Disjunction must fail to match at the current position. + The current position is not advanced before matching the sequel +es5id: 15.10.2.8_A2_T5 +description: > + Execute /Java(?!Script)([A-Z]\w*)/.exec("JavaScr oops ipt ") and + check results +---*/ + +var __executed = /Java(?!Script)([A-Z]\w*)/.exec("JavaScr oops ipt "); + +var __expected = ["JavaScr", "Scr"]; +__expected.index = 0; +__expected.input = "JavaScr oops ipt "; + +assert.sameValue( + __executed.length, + __expected.length, + 'The value of __executed.length is expected to equal the value of __expected.length' +); + +assert.sameValue( + __executed.index, + __expected.index, + 'The value of __executed.index is expected to equal the value of __expected.index' +); + +assert.sameValue( + __executed.input, + __expected.input, + 'The value of __executed.input is expected to equal the value of __expected.input' +); + +for(var index=0; index<__expected.length; index++) { + assert.sameValue( + __executed[index], + __expected[index], + 'The value of __executed[index] is expected to equal the value of __expected[index]' + ); +} + +reportCompare(0, 0); -- cgit v1.2.3