blob: a23903e4c0271c005fed72f337d88d3622d54de3 [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/reporting/#intervention-report
[
LegacyNoInterfaceObject
] interface InterventionReportBody : ReportBody {
readonly attribute DOMString id;
readonly attribute DOMString message;
readonly attribute DOMString? sourceFile;
readonly attribute unsigned long? lineNumber;
readonly attribute unsigned long? columnNumber;
[CallWith=ScriptState] object toJSON();
};