7bb79b96bd
Bug: chromium:831984 Change-Id: Ie13b22bc2491acc255557ba0325d8d53c22d6acb Reviewed-on: https://chromium-review.googlesource.com/1012874 Reviewed-by: Igor Sheludko <ishell@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#52630}
11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
// Copyright 2018 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.
|
|
|
|
|
|
let arr = [...Array(9000)];
|
|
for (let j = 0; j < 40; j++) {
|
|
Reflect.ownKeys(arr).shift();
|
|
Array(64386);
|
|
}
|