blob: 16cd1a019ca9d95bf706d93ffa556cfd75f6632c [file] [log] [blame]
// Copyright 2018 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 FeaturePolicyViolationReportBody : ReportBody {
readonly attribute DOMString feature;
readonly attribute DOMString message;
readonly attribute DOMString? sourceFile;
readonly attribute unsigned long? lineNumber;
readonly attribute unsigned long? columnNumber;
};