@webref/idl 3.72.0 → 3.72.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,4 +8,16 @@ dictionary CrashReportBody : ReportBody {
8
8
  DOMString stack;
9
9
  boolean is_top_level;
10
10
  DocumentVisibilityState visibility_state;
11
+ object crash_report_api;
12
+ };
13
+
14
+ partial interface Window {
15
+ readonly attribute CrashReportContext crashReport;
16
+ };
17
+
18
+ [Exposed=Window]
19
+ interface CrashReportContext {
20
+ Promise<undefined> initialize(unsigned long long length);
21
+ undefined set(DOMString key, DOMString value);
22
+ undefined delete(DOMString key);
11
23
  };
@@ -8,7 +8,6 @@ interface Credential {
8
8
  readonly attribute USVString id;
9
9
  readonly attribute DOMString type;
10
10
  static Promise<boolean> isConditionalMediationAvailable();
11
- static Promise<undefined> willRequestConditionalCreation();
12
11
  };
13
12
 
14
13
  [SecureContext]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.72.0",
4
+ "version": "3.72.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -6,7 +6,7 @@
6
6
  [Exposed=Window] interface XRMesh {
7
7
  [SameObject] readonly attribute XRSpace meshSpace;
8
8
 
9
- readonly attribute FrozenArray<Float32Array> vertices;
9
+ readonly attribute Float32Array vertices;
10
10
  readonly attribute Uint32Array indices;
11
11
  readonly attribute DOMHighResTimeStamp lastChangedTime;
12
12
  readonly attribute DOMString? semanticLabel;
package/serial.idl CHANGED
@@ -37,8 +37,8 @@ interface SerialPort : EventTarget {
37
37
  attribute EventHandler onconnect;
38
38
  attribute EventHandler ondisconnect;
39
39
  readonly attribute boolean connected;
40
- readonly attribute ReadableStream readable;
41
- readonly attribute WritableStream writable;
40
+ readonly attribute ReadableStream? readable;
41
+ readonly attribute WritableStream? writable;
42
42
 
43
43
  SerialPortInfo getInfo();
44
44