// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://html.spec.whatwg.org/C/#cross-origin-opener-policies
[
LegacyNoInterfaceObject
] interface CoopAccessViolationReportBody : ReportBody {
readonly attribute DOMString? sourceFile;
readonly attribute unsigned long? lineNumber;
readonly attribute unsigned long? columnNumber;
readonly attribute DOMString type;
readonly attribute DOMString property;
readonly attribute DOMString? openeeURL;
readonly attribute DOMString? openerURL;
readonly attribute DOMString? otherDocumentURL;
[CallWith=ScriptState] object toJSON();
};