blob: aa0c81dc0b9c89b69fd82a65ffc1707aedf6c84c [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://github.com/WICG/reporting/blob/master/EXPLAINER.md#reportingobserver---observing-reports-from-javascript
[
NoInterfaceObject,
RuntimeEnabled=ReportingObserver
] interface InterventionReport : ReportBody {
// TODO(paulmeyer): Add additional data, such as id.
readonly attribute DOMString message;
readonly attribute DOMString sourceFile;
readonly attribute long lineNumber;
};