d59db06bf5
Bug: v8:8179 Change-Id: I7f699073807d1874d0c10a4f1641de6bfb0efe6f Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2741582 Commit-Queue: Shu-yu Guo <syg@chromium.org> Reviewed-by: Shu-yu Guo <syg@chromium.org> Reviewed-by: Adam Klein <adamk@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Cr-Commit-Position: refs/heads/master@{#73871}
12 lines
531 B
JavaScript
12 lines
531 B
JavaScript
// 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.
|
|
|
|
// A newly created WeakRef is kept alive until the end of the next microtask
|
|
// checkpoint. V8 asserts that the kept objects list is cleared at the end of
|
|
// microtask checkpoints when the microtask policy is auto. Test that d8, which
|
|
// uses the auto policy, upholds the assert when manually quitting.
|
|
let obj = {};
|
|
let wr = new WeakRef(obj);
|
|
testRunner.quit();
|