Skip to content

Commit

Permalink
Bug 1646440 [wpt PR 24202] - Add interfaces/intervention-reporting.id…
Browse files Browse the repository at this point in the history
…l and test, a=testonly

Automatic update from web-platform-tests
Add interfaces/intervention-reporting.idl and test (#24202)

Closes web-platform-tests/wpt#24193
--

wpt-commits: cce62117eaefe78cf0a1bcb858c2b535ec5d2e0b
wpt-pr: 24202
  • Loading branch information
stephenmcgruer authored and moz-wptsync-bot committed Jul 18, 2020
1 parent bdf9db1 commit 9a6b6c3
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions testing/web-platform/tests/interfaces/intervention-reporting.idl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: Intervention Reporting (https://wicg.github.io/intervention-reporting/)

[Exposed=(Window,Worker)]
interface InterventionReportBody : ReportBody {
[Default] object toJSON();
readonly attribute DOMString id;
readonly attribute DOMString message;
readonly attribute DOMString? sourceFile;
readonly attribute unsigned long? lineNumber;
readonly attribute unsigned long? columnNumber;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

idl_test(
['intervention-reporting'],
['reporting'],
idl_array => {
idl_array.add_objects({
// TODO: objects
});
}
);

0 comments on commit 9a6b6c3

Please sign in to comment.