2020-04-06 21:29:15 +02:00
|
|
|
// Copyright 2020 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
//
|
2021-06-08 14:04:59 +02:00
|
|
|
// Flags: --allow-natives-syntax --stack-size=1200
|
2020-04-06 21:29:15 +02:00
|
|
|
|
|
|
|
const needle = Array(1802).join(" +") + Array(16884).join("A");
|
|
|
|
const string = "A";
|
|
|
|
|
|
|
|
assertEquals(string.search(needle), -1);
|
|
|
|
assertEquals(string.search(needle), -1);
|