summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/frame/deprecation_report_body.idl
blob: 8ac1919fdf857a000d429509bac11f89c9ce5ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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://wicg.github.io/reporting/#deprecation-report

[
    NoInterfaceObject,
    RuntimeEnabled=DeprecationReporting
] interface DeprecationReportBody : ReportBody {
  readonly attribute DOMString id;
  readonly attribute Date? anticipatedRemoval;
  readonly attribute DOMString message;
  readonly attribute DOMString? sourceFile;
  readonly attribute unsigned long? lineNumber;
  readonly attribute unsigned long? columnNumber;
};