blob: 4ed1f2d02942ff7d7f6208736a947ad6cab09654 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
function testFunction() {
debugger;
var a = { k: 1 };
var b = [1, 2, 3, 4, 5];
var c = new Array(100); c[10] = 1;
a.k = 2;
a.l = window;
b[1]++;
b[2] = document.body;
}